Card.ZhengTai.FormatGasCard C# (CSharp) Метод

FormatGasCard() публичный Метод

格式化卡
public FormatGasCard ( Int16 com, Int32 baud, string kmm, string kh, string dqdm ) : int
com System.Int16 串口号,0代表串口1
baud System.Int32
kmm string 卡密码
kh string 卡号
dqdm string 地区代码
Результат int
        public int FormatGasCard(Int16 com,          //串口号,从0开始
           Int32 baud,         //波特率
           string kmm,         //卡密码,写卡后返回新密码
           string kh,          //卡号
           string dqdm)
        {
           
           
             Log.Debug("ZhengTai Format Card start ");
             int i = ClearICCard(com, baud);
             Log.Debug("ZhengTai Format Card end and i is " + i);
      
            return i;
        }
        public int OpenCard(Int16 com, Int32 baud)