hex value

  • Thread starter Thread starter RickN
  • Start date Start date
Cast with

char c = (char) 0x1D; // use 0x for hex constants

or convert using system.Convert:

char c = Convert.ToChar (0x1D);

Best!,
Stu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top