public static string FormatMoney(decimal money) { string result = string.Empty; int t = (int)money; if ((decimal)t == money) { result ...
確定! 回上一頁