상세 컨텐츠

본문 제목

Mewtocol BCC코드 생성

sesoleng

by xarfox 2010. 8. 11. 10:15

본문


  private int get_bcc_code(string data)
  {
   char[] temp = new char[1024];

   temp = data.ToCharArray();

   int strlen = temp.Length;   

   int bcc = temp[0];

   for (int i = 1; i < strlen; i++)
   {
    bcc = bcc ^ temp[i];
   }

   return bcc;
  }

관련글 더보기