Using hex constants of unsigned integer that exceed the maxvalue of integer values
2147483647
e.g. like
2242054355
are not converted correctly
VB.Net input code
Public Class TestClass
Const GoodSmallHexUInt As UInteger = &H13198A2EUI
Const GoodBigUInt As UInteger = 2242054355
Const BadBigHexUInt As UInteger = &H85A308D3UI
End Class
Using hex constants of unsigned integer that exceed the maxvalue of integer values 2147483647 e.g. like 2242054355 are not converted correctly
VB.Net input code
Erroneous output
Expected output
Details
C# -> VB does not have this issue