ビューに Price フィールドがあります。次の値があり2.5 and 44.
ます。この値を表示したいのですが2.50 and 44.00
、次のコードを使用します
@{decimal prolistprice = decimal.Parse(item.OtherFields["Price"].ToString());}
$@Math.Round(prolistprice, 2, MidpointRounding.AwayFromZero)
私はitem.OtherFields["price"] is a object
それを文字列に変換してから10進数に変換します
しかし、Math.roundは機能していません.2.5と44しか表示されません..誰でもこれを助けることができます