Re: strange character problem

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



The cheap and nasty way is to do this:

Console.WriteLine("Character code is: {0}",
(int)problemString[problemString.Length - 1]);

this will print out the character code as an integer. You can then look
it up in an ASCII table.

.



Relevant Pages