vote up 1 vote down star
1

I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :

int a = 0xAF2323F5;

is there a binary constants representation format?

flag

What do you mean? const int a = 2938315765; – Paco Aug 7 at 20:28
Thank you, I guess your result is correct but I was looking for systematical solution. Should I post a question o stackoverflow for each binary constant I need to convert? – Andrei Rinea Aug 7 at 20:29
.. for example 10110011 – Andrei Rinea Aug 7 at 20:29
1  
This is a dupe of stackoverflow.com/questions/594720/… – Dan Diplo Aug 7 at 20:37
Good pointer, didn't know to search for "literal" although I should. Maybe Jeff was right about the search algoritm sucking a little (39%?) – Andrei Rinea Aug 7 at 20:43

2 Answers

vote up 4 vote down check

Nope, no binary literals in C#. You can of course parse a string in binary format using Convert.ToInt32, but I don't think that would be a great solution.

int bin = Convert.ToInt32( "1010", 2 );
link|flag
I'll leave the question open for a few hours but this being the first answer, if it proves true, it will be chosen as the official answer. Thank you. – Andrei Rinea Aug 7 at 20:28
1  
It is true... might as well accept now. – Marc Gravell Aug 7 at 20:30
Accepting now.. – Andrei Rinea Aug 7 at 20:41
vote up 2 vote down

You could use an extension method:

public static int ToBinary(this string binary)
{
    return Convert.ToInt32( binary, 2 );
}

However, whether this is wise I'll leave up to you (given the fact it will operate on any string).

link|flag

Your Answer

Get an OpenID
or

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