Dear friends,
do you know how to convert the following codes into C # ?
Tks,
hendy
BYTE ResultSN[11];
char SN[100];
BYTE TagType;
if ((TagType == 4) || (TagType == 5))
{
memcpy(SN,ResultSN, 7);
StrMsg.Format("Card Serial: %02x %02x %02x %02x %02x %02x %02x ",ResultSN[0],ResultSN[1],ResultSN[2],ResultSN[3],ResultSN[4],ResultSN[5],ResultSN[6] );
}