Not too hard and basically just what hooser said.
Code:
string upper = textBox1.Text.Substring(0,1).ToUpper();
string lower = textBox1.Text.Substring(1).ToLower();
string complete = String.Concat(upper, lower);
Replace textbox.text with your own string.