I am a C#.net , vb.net user . I have a problem with a code that has only 6 lines in C++ that I want to translate to vb.net or C# . Here is the code :
Code:
GUCHAR GenerateCkSum(GUCHAR *pure_data, U2 size)
{
GUCHAR chksum;
I2 i;
chksum = pure_data[0];
for(i=1; i<size ; i++)
chksum ^= pure_data[i];
return chksum;
}
Thank you all for your support ,
WSN

