Extended ascii chars

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to store an extended ascii char in visual basic .net

In previous VB chr$(254) ' â– 

I need to send ascii chars (8 bit) to a serial port

Thanks for any help.
 
* "=?Utf-8?B?SmFtZXMgUGFoaXJpcw==?= said:
Is there any way to store an extended ascii char in visual basic .net.

In previous VB chr$(254) ' â– 

I need to send ascii chars (8 bit) to a serial port.

You can use a byte instead, or use an encoding's 'GetBytes' method.
 
Back
Top