chr(34)

  • Thread starter Thread starter selen
  • Start date Start date
Jon Skeet said:
Not entirely sure what you're asking here, but:

char c = 34;

will work fine.

Oops - not quite, as you need to cast from int to char:

char c = (char)34;
 
Back
Top