[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: .Net openclient usage in netstandard library (eg. from .net core)

  • Thread starter Thread starter Matt Gilarde
  • Start date Start date
Status
Not open for further replies.
M

Matt Gilarde

Guest
The decompiler is probably not differentiating between signed and unsigned values. -1 is equivalent to the unsigned value 0xFFFFFFFF so you could replace uint x = -1 with uint x = 0xFFFFFFFF to specify the same value in a way the compiler will accept.

Continue reading...
 
Status
Not open for further replies.
Back
Top