我正在检索以下十进制值,需要将这些值转换为字符串。
// 百分比列
column1:获取值为 0.08,应在 UI 中显示为 8.00%
// 货币列
Column2:获取值为 1000 的值应在 UI 中显示为 $1000
列 3:获取值为 3000 的值应在 UI 中显示为 $3000
有可能做这样的事情吗?
String PercentageCustomFormat="{PercentageCustomFormat}";
string CurrencyCustomFormat="{CurrencyCustomFormat}";
PercentageCustomFormat/ CurrencyCustomFormat 应该包含这样的逻辑:如果任何列返回 Null,它应该显示为“NA”。
检索:
String.Format("{PercentageCustomFormat}", column1);
String.Format("{CurrencyCustomFormat}", column2);
提前致谢