我正在尝试使用具有 2 精度的 Decimal 动态设置单元格,但是当我设置它时,它会失去其精度。
这是我失去精度的代码。
// decimal total=123.22;
// int row_index=0;
// int total_cell_index=13;
gv.GetDataRow(row_index)[total_cell_index] = total;
但单元格设置为 123。它失去了精度。我应该怎么做才能解决这个问题?
我正在尝试使用具有 2 精度的 Decimal 动态设置单元格,但是当我设置它时,它会失去其精度。
这是我失去精度的代码。
// decimal total=123.22;
// int row_index=0;
// int total_cell_index=13;
gv.GetDataRow(row_index)[total_cell_index] = total;
但单元格设置为 123。它失去了精度。我应该怎么做才能解决这个问题?