How can the first letter in a text be set to capital?
Example:
it is a text. = It is a text.
text = new String( new [] { char.ToUpper(text.First()) } .Concat(text.Skip(1)) .ToArray() );