07-27-2013, 04:05 AM
Same result:
UInt32 i= Convert.ToUInt32("0x0C", 16);
UInt32 j= Convert.ToUInt32("0C", 16);
If your app is a 32 bit application, dont use long because long is a signed Int64 (2 at power of 64), if it is a 64 bit application use ulong, or UInt64.
2
it works perfectly.
thanks again wiza


