gpt4 book ai didi

C# 数据表十进制精度

转载 作者:行者123 更新时间:2023-11-30 17:17:50 24 4
gpt4 key购买 nike

我有这段代码可以将新列添加到数据表中:

DataColumn col = new DataColumn("column", typeof(decimal));      col.Caption = "Column";mytable.Columns.Add(col);

如何为此列指定小数精度,以便值始终采用我希望的格式?

最佳答案

你不能。但是,您可以在使用 String.Format 函数从表中检索值时格式化该值:

String.Format("{0:0.##}", (Decimal) myTable.Rows[rowIndex].Columns[columnIndex]); 

关于C# 数据表十进制精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6176657/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com