码迷,mamicode.com
首页 > 其他好文 > 详细

帧校验序列码FCS

时间:2018-11-22 21:44:30      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:i++   ==   turn   ati   temp   private   length   ++   result   

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(" ","");
}

帧校验序列码FCS

标签:i++   ==   turn   ati   temp   private   length   ++   result   

原文地址:https://www.cnblogs.com/zhangsir95/p/10004045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!