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:
It looks like what you are trying to do is reverse the bits of crc32result. If so, you want the tilde operator ~.
return (~crc32Result);
Reference this question.