Binär to Hexadezimal

Hallo,

Gibt es in C# eine Funktion die eine Binärzahl im Hexadezimalzahl umwandeln kann? Wenn nicht wie tut man das?.
Danke

In C# findest du einen Lösungsweg hier:

http://dotnet-snippets.de/dns/c-multiconverter-dez-h…

LG,
frohsinn

Geht auch einfacher:

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string x = „101“;

int i = Convert.ToInt32(x, 2);

string s = i.ToString(„0x0“);

Console.WriteLine(s);
Console.ReadLine();
}
}
}