// 1.10 M1卡获取账户信息
        public string M1ReadAccountInfoHandler(uint rechargeMoney, string keyA, uint rechargeType)
        {
            string temp = "";
            int    flag;

            byte[] resultByte = new byte[1000];
            flag = Recharge.M1ReadAccountInfo(rechargeMoney, keyA, rechargeType, resultByte);
            temp = Convertor.Ascii2Str(resultByte);

            return(flag + ";" + temp);
        }