Equivalent of Chr(nn) in c#?

  • Thread starter Thread starter Brett Hargreaves
  • Start date Start date
B

Brett Hargreaves

in VB you can convert inocode values to a character eg Chr(65) becomes "A"

How do i do this in c#?

Thanks
 
Use type casting: (char)65 returns 'A'

in VB you can convert inocode values to a character eg Chr(65) becomes "A"

How do i do this in c#?

Thanks
 

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