R RickN Oct 8, 2003 #1 I want to set a char value to hex 1D, what is the best way to do this? Thanks, RickN
S Stu Banter Oct 8, 2003 #2 Cast with char c = (char) 0x1D; // use 0x for hex constants or convert using system.Convert: char c = Convert.ToChar (0x1D); Best!, Stu
Cast with char c = (char) 0x1D; // use 0x for hex constants or convert using system.Convert: char c = Convert.ToChar (0x1D); Best!, Stu
M Mattias Sjögren Oct 9, 2003 #3 I want to set a char value to hex 1D, what is the best way to do this? Click to expand... char c = '\x1d'; Mattias
I want to set a char value to hex 1D, what is the best way to do this? Click to expand... char c = '\x1d'; Mattias