帧校验序列码FCS

private static string FCS(string s)
{
int xorResult = 0;
string tempfes = “”;
for (int i = 0; i < s.Length; i++)
{
xorResult = xorResult ^ Convert.ToInt32(s[i]);
}
tempfes = Convert.ToString(xorResult, 16);
//补0
if (tempfes.Length == 1)
{
tempfes = “0” + tempfes;
}
return tempfes.ToUpper().Replace(” “,””);
}

posted on 2018-11-22 21:26 枯竹大师 阅读() 评论() 编辑 收藏

版权声明:本文为zhangsir95原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/zhangsir95/p/10004045.html