icsharpcode / ILSpy

.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
21.45k stars 3.35k forks source link

Int64 value #609

Closed bprg closed 7 years ago

bprg commented 9 years ago

Original Code long value = 2147483648L;

Decompile Code long value = -2147483648;

bprg commented 9 years ago

Original Code uint value = 2147483648u;

Decompile Code uint value = -2147483648;

dgrunwald commented 7 years ago

This was fixed in the new decompiler engine (which just landed on the master branch).