嗨,我使用 DisplayFormat 属性将输出格式定义到我的视图中。我的代码是:
[DisplayFormat(DataFormatString = "{0:C2}")]
public decimal DeltaPrice{get; set;}
我目前的输出是:
正价为 10,00 欧元,负价为 10,00 欧元。
我希望我的输出看起来像:
+€ 10,00 到正价和 -€ 10,00 到负价。
你能帮助我吗?感谢和问候
嗨,我使用 DisplayFormat 属性将输出格式定义到我的视图中。我的代码是:
[DisplayFormat(DataFormatString = "{0:C2}")]
public decimal DeltaPrice{get; set;}
我目前的输出是:
正价为 10,00 欧元,负价为 10,00 欧元。
我希望我的输出看起来像:
+€ 10,00 到正价和 -€ 10,00 到负价。
你能帮助我吗?感谢和问候