SyntaxFix
Write A Post
Hire A Developer
Questions
If your using vS2k8, you can use an extension method to add it to the String class:
public static string FirstLetterToUpper(this String input) { return input = input.Substring(0, 1).ToUpper() + input.Substring(1, input.Length - 1); }