There are several samples at codeproject. A few:
http://www.codeproject.com/csharp/hexencoding.asp
http://www.codeproject.com/csharp/hexconverter.asp
http://www.codeproject.com/string/hexstrtoint.asp
HTH.
-- Mark
> Hi,
>
[quoted text clipped - 11 lines]
> Thanks,
> Ole
Ole - 28 Aug 2006 12:18 GMT
Thanks,
I also found these standard methods - very easi to use:
Convert.ToString(number, 2); // where 2 specifies binary format - 8 would
be octal and so on
and:
Convert.ToUInt32(textBox2.Text, 2); // again 2 specifies binary format
Best regards
Ole
> There are several samples at codeproject. A few:
>
[quoted text clipped - 21 lines]
>> Thanks,
>> Ole