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.
C# で 10 進数値を 6 桁に丸める必要があります。以下のコード セグメントで 0.046080 と 0.116220 の合計を使用すると、答えは 0.1623 になります。
DesTot = Math.Round(TotalQty + sumtot, 6);
しかし、答えを0.162300として表示したい
どうすればC#でできますか