VB has a couple of native functions for converting a char to an ASCII value and vice versa - Asc() and Chr().
Now I need to get the equivalent functionality in C#. What's the best way?
|
|
|||
|
|
|
For
and for
Here is a small program that demonstrates the entire thing:
|
|||
|
|
|
|
How would I do this WITHOUT using Chr() or Asc()? I want to use true vb.net functions only. Dim n As Int16 Dim s As String = "A" n= Asc(s) ' n will now equal 65 s = Chr(n) ' s will now equal "A" |
||
|
|
|
|
You could always add a reference to Microsoft.VisualBasic and then use the exact same methods: Strings.Chr and Strings.Asc. That's the easiest way to get the exact same functionality. |
||
|
|
Given char c and int i, and functions fi(int) and fc(char): From char to int (analog of VB Asc()): explicitly cast the char as an int: i = (int) c; or mplicitly cast (promote): fi(c), i+= c; From int to char (analog of VB Chr()): explicitly cast the int as an char: c = (char) i, fc( (char) i); An implicit cast is disallowed, as an int is wider (has a greater range of values) than a char |
||
|
|
|
|
Try this...
|
||
|
|
|
|
For Chr() you can use:
|
||
|
|
|
|
You can use the Convert class. From char to ascii:
And then back from ascii value to char:
|
||||
|