块检查字符

时间:2011-05-18 23:14:30

标签: c#

您好 面对这个问题 是 new byte [] {0x04,0x30,0x02,0x44,0x03} 需要定义BCc 我能怎么做? 先感谢您 我尝试这个功能,但它无法正常工作

    private static byte GetBCC(byte[] inputStream)
    {
        byte bcc = 0;
        if (inputStream != null && inputStream.Length > 0)
        {

            for (int i = 1; i < inputStream.Length; i++)
            {
                bcc ^= inputStream[i];
            }
        }

        return bcc;
    }

0 个答案:

没有答案