VB.NET's Chr( ) equivalent in C#.

  • Thread starter Thread starter Sami
  • Start date Start date
S

Sami

Hello,
here is my problem:

I am trying to convert Ascii Values to characters in C# without success.

In VB.NET the Chr(128) returns the Euro sign and Chr(130) returns comma.

When I try to do the following in C# i.e. (char)128 or (char)130 I get
unreadable characters.

What is the best way of achieving the results equivalent to a Chr( ) in
VB.NET.
 
Back
Top