Related questions
C#: how to get first character of a string?
We already have a question about getting the first 16-bit char of a string.
This includes the question code:
MyString.ToCharArray[0]
and accepted answer code:
MyString[0]
I guess there are some uses for that, but when the string contains text …
How to compare Unicode characters that "look alike"?
I fall into a surprising issue.
I loaded a text file in my application and I have some logic which compares the value having µ.
And I realized that even if the texts are same the compare value is false.
Console.…