How can the first letter in a text be set to capital?
Example:
it is a text. = It is a text.
Try this code snippet:
char nm[] = "this is a test"; if(char.IsLower(nm[0])) nm[0] = char.ToUpper(nm[0]); //print result: This is a test