我在datatable中有一个字段.如果1000是其中的值,我想将其显示为1000.00.然后,如果用户更改为1000.50,它应该显示为原样.无论如何要做到这一点吗?有人可以帮忙吗?
示例代码:
Dim bigNumber As Decimal = 1234567.123456 Console.WriteLine("F2: " & bigNumber.ToString("F2")) Console.WriteLine("N2: " & bigNumber.ToString("N2"))
输出:
F2: 1234567.12 N2: 1,234,567.12
您很有可能想要显示货币,所以这样做:
1000m.ToString("C"); // Will show $1000.00, $1000,00 etc depending on culture // OR just 1000m.ToString("N2"); 1000m.ToString("F2"); // For plain numbers: 1000.00, 1000,00
只是ToString
不一定在所有情况下都有效。如果要格式化数据行的小数字段,则需要以下内容:
Format(datarow("field"), "C") ' for currency Format(datarow("field"), "N2") ' for 2 decimal places
这种方法将适用于所有数字。