J Jon Skeet [C# MVP] Jan 20, 2004 #3 selen said: chr(34)= ? in c# how can I use it? What is the 34 number ? Click to expand... Not entirely sure what you're asking here, but: char c = 34; will work fine.
selen said: chr(34)= ? in c# how can I use it? What is the 34 number ? Click to expand... Not entirely sure what you're asking here, but: char c = 34; will work fine.
M Morten Wennevik Jan 20, 2004 #4 The 34 is the ascii character 34 (or the unicode 0034) which is the character "
J Jon Skeet [C# MVP] Jan 20, 2004 #5 Jon Skeet said: Not entirely sure what you're asking here, but: char c = 34; will work fine. Click to expand... Oops - not quite, as you need to cast from int to char: char c = (char)34;
Jon Skeet said: Not entirely sure what you're asking here, but: char c = 34; will work fine. Click to expand... Oops - not quite, as you need to cast from int to char: char c = (char)34;