المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Hex Strings to Integer



C# Programming
05-19-2009, 06:52 PM
Hi,

I'm looking for a way to get a hex string into an integer without converting it. IE: The user enters 10, if I use "uint32 x = Convert.UInt32(String)" I end up with 0x0A, not 0x10. I know if I use a pointer and do it by byte at a time it will work, but I was looking for something a little more straight forward.

Thanks,
Glenn

Glenn