decimal value = 10;
int decimalPosition= 3; //this decimalPosition will be dynamically change.
decimal formatted = Math.Round(value, decimalPosition);
decimalPosition=3の場合; 10.000のようなフォーマットされた値を表示する必要があります。
decimalPosition=5の場合; 10.00000のようなフォーマットされた値を表示する必要があります。
注:Round
関数を使用する必要があります。