I am trying to convert JS program to VB.NET, I don't understand one part: in vb.net: Console.WriteLine(2915711342 Xor -307619539) => -3214925757 || in JS: Console.Log(2915711342^-307619539); => 1080041539.
The only thing I found is: -3214925757 And &HFFFFFFFF& => 1080041539. But using this approach things get overcomplicated. Can you explain in more details what is going on and how to fix it?
The only thing I found is: -3214925757 And &HFFFFFFFF& => 1080041539. But using this approach things get overcomplicated. Can you explain in more details what is going on and how to fix it?