vote up 1 vote down star

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?

flag

Please note that rarely does anyone talk about ASCII values these days. Usually you're using Unicode codepoints (or UTF-16 encoding thereof) instead: joelonsoftware.com/articles/Unicode.html/… – Joachim Sauer Apr 6 at 12:30

7 Answers

vote up 7 vote down check

For Asc() you can cast the char to an int like this:

int i = (int)your_char;

and for Chr() you can cast back to a char from an int like this:

char c = (char)your_int;

Here is a small program that demonstrates the entire thing:

using System;

class Program
{
    static void Main()
    {
    	char c = 'A';
    	int i = 65;

        // both print "True"
    	Console.WriteLine(i == (int)c);
    	Console.WriteLine(c == (char)i);
    }
}
link|flag
vote up 0 vote down

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"

link|flag
vote up 1 vote down

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.

link|flag
Except that Strings class doesn't exist inside .NET 2008... :( – Shaul Apr 6 at 12:42
If you add a reference, it will exist. – Samuel Apr 6 at 12:50
vote up 1 vote down

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

link|flag
vote up 0 vote down

Try this...

sum += (int) str[i];
link|flag
vote up 0 vote down

For Chr() you can use:

char chr = (char)you_char_value;
link|flag
vote up 3 vote down

You can use the Convert class. From char to ascii:

int asciiValue = Convert.ToInt32('a');

And then back from ascii value to char:

char c = Convert.ToChar(asciiValue);
link|flag
Whoa - I accidentally edited your answer instead of mine!! Sorry about that! – Andrew Hare Apr 6 at 12:34
Heh, it's ok. As long as it's for the better ;-) – Razzie Apr 6 at 12:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.