Hi, I have some code written in VB that reads as follows:
Return (Not (crc32Result))
I am trying to convert it to C#, and this is what I have:
return (!(crc32Result));
However I get a compiler error:
Compiler Error Message: CS0023: Operator '!' cannot be applied to operand of type 'uint'
Is there a different operator I need to be using instead of this one?
Thanks!