//1.9 M1获取余额 public string M1GetBalance(string keyString) { string temp = ""; int flag; byte[] resultByte = new byte[1000]; flag = Recharge.M1GetBalance(keyString, resultByte); temp = Convertor.Ascii2Str(resultByte); return(flag + ";" + temp); }