the line \"if(arg2 & 1)\" in C++(arg2 is DWORD) is equal to \"if(arg2 & 1==0)\" in C#(arg2 is Uint32),right?
I am trying to translate a function from C++ to
DWORD
uint32_t
UInt32
if(a & b)
if((a & b) != 0)
!=
&
if(x)
if(x != 0)