Problems with char typecast's
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, i have a problem with the char typecast's or the string.toCharArray() function. when i have an extended ascii char in my string like "‹" c# converts this into the char with the integer 8249. BUT the integer i need is 0139, which is the same in HTML (http://www.netstrider.com/tutorials/HTMLRef/ASCII/[^]). how can i solve this problem most simply? i don't wanna check every char if it's greater than 255.