Need some help converting VB.NET code to C# -
I have a CRC class written in VB.NET. I want it in C # I used an online converter to start me, but I'm getting some errors.
byte [] buffer = new byte [BUFFER_SIZE]; ILookup = (crc32Result & amp; 0xff) ^ buffer (i);
On that line, the compiler gives me this error:
Compiler Error Message: CS0118: 'Buffer' is one
Thank you!
change buffer (i)
to buffer [i]
Comments
Post a Comment