deepzero Posted January 23, 2010 Posted January 23, 2010 Hi, I am stuck at converting a negative signed value to an unsigned value in vb.net 2008: e.g. signed: -1111111 unsigned: 4293856185 I am trying to do a "NEG" operation... any ideas? deep0
kao Posted January 24, 2010 Posted January 24, 2010 Something like this?i = -1111111j = Convert.ToUInt32(&H100000000 + i)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now