C#: how to get first char of a string?

Just MyString[0]. This uses the String.Chars indexer.

Leave a Comment