كود :
// <a-z, A-Z>
string[] Capital = new string[] {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};
string[] Small = new[] {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"};
// Select All Key Array For Get Count.
var ekk = from key in Small select key;
// Replace All Capital To Small
for (int i = 0; i < ekk.Count(); i++)
{
textBox1.Text = textBox1.Text.Replace(Capital[i], Small[i]);
}
// Focus in Last TextBox
int textLength = textBox1.Text.Length;
textBox1.SelectionStart = textLength;
textBox1.SelectionLength = 0;