Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
小数部の小数部分を取得するにはどうすればよいですか。
decimal d = 10; decimal result = d/10;
これにより1、どうすれば1.0(まだ、decimalではなくstring)持つことができますか?
1
1.0
decimal
string
表現の問題の場合:
using System; public class Test { public static void Main() { decimal d = 10; decimal result = d / 10; Console.WriteLine( string.Format("{0:0.0}", result ) ); // or Console.WriteLine( result.ToString("0.0") ); } }
それらはすべて出力として 1.0 を出力します。
DEMO