Im trying to parse a file in c# that has field (string) arrays separated by ascii character codes 0, 1 and 2 (in Visual Basic 6 you can generate these by 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 doesnt work for character codes 1 and 2?