Im trying to parse a file in C # that has arrays of fields (strings) separated by ascii character codes 0, 1 and 2 (in Visual Basic 6 you can generate them using Chr (0) or Chr (1), etc. .)
I know that for character code 0 in C # you can do the following:
char separator = '\0';
But this does not work for character codes 1 and 2?
c # escaping character-encoding ascii
Jimbo Aug 05 '10 at 13:04 on 2010-08-05 13:04
source share