On 10/8/05 8:25 pm, in article #PKIbGenFHA.3900@TK2MSFTNGP09.phx.gbl,
> I have some binarystrings in the registry (from an older j++ app) that I
> need to convert at runtime to ints. What is the best practice for this? In
[quoted text clipped - 5 lines]
> Is that convert function broken? Is there another way to do this or am I
> just screwed?
There isn't a method Convert.ToUInt32(object, int). There's
Convert.ToUInt32(string, int) however - perhaps you just need to cast val to
a string first?

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Keith - 12 Aug 2005 22:40 GMT
> There isn't a method Convert.ToUInt32(object, int). There's
> Convert.ToUInt32(string, int) however - perhaps you just need to cast val
> to
> a string first?
Apparently I can't read parameter lists, or at least not yesterday. Yes,
this works fine if cast. Thanks for the boot to the head ;-)