C#
dinner1984
这个作者很懒,什么都没留下…
展开
-
CRC 实现,生成校验码和验证
class CrcClass { static ushort[] crc_table = { 0x0000 , 0x1021 , 0x2042 , 0x3063 , 0x4084 , 0x50a5 , 0x60c6 , 0x70e7 , 0x8108 , 0x原创 2012-09-21 16:03:19 · 1550 阅读 · 0 评论 -
BCH编码,解码,纠错
class BchClass { //BCH编码 //把数据从16位变成26位 public static string BuildEfficacyCode(uint mx) { ushort g = 0x5B9;//11位 ushort register = 0x0000;原创 2012-09-21 16:11:46 · 18215 阅读 · 1 评论 -
c#判断数据库连接是否打开
if (conn.State == ConnectionState.Open)转载 2012-09-25 16:35:54 · 3814 阅读 · 0 评论