ホーム
サンプルコード
雑記
デザインパターン
ソフトウェア
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
private void button1_Click(object sender, EventArgs e) { decimal d = 0.0100M; Console.WriteLine(d); // 0.0100 d = DecimalZeroCut(d); Console.WriteLine(d); // 0.01 } private decimal DecimalZeroCut(decimal d) { string s = d.ToString(); if (s.IndexOf(".") < 0) { // 小数点なし return d; } return decimal.Parse(s.TrimEnd('0')); }