ToChar of strange values

  • Thread starter Thread starter PHead
  • Start date Start date
Hi PHead,
unlike in some other languages where a char represents an 8-bit data
value, in .Net the char type is an alias for System.Char which represents
unicode characters that are 16 bits in length. So you can have an integral
value from U+0000 to U+ffff

Hope that helps
Mark R Dawson
 
Back
Top