Well, a string is just a series of characters, so access each one in
turn. You can find the unicode value of a character by just casting it
char. For instance, this prints out the unicode value of each character
in a string:
foreach (char c in theString)
{
Console.WriteLine ((int)c);
}
Well, a string is just a series of characters, so access each one in
turn. You can find the unicode value of a character by just casting it
char. For instance, this prints out the unicode value of each character
in a string:
foreach (char c in theString)
{
Console.WriteLine ((int)c);
}
I personally tend to use int. Short would be okay, but ushort would be
better, as that's an unsigned 16-bit type like char.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.