如果我们在C#中使用convert.ToDouble选项,如何使用Math.Round选项舍入到2位小数?

时间:2018-05-31 21:37:39

标签: c# datagridview

我想知道如何使用Math.Round选项舍入以下插入查询的2位小数,其中包含Convert.ToDouble选项

 for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
            {
                con.sqlquery(@"Insert into TBL_PO_Cart(PO_No,ISBN_No,OrderQuantity,UnitPrice,Total) values('" + txtPONo.Text + "','" + dataGridView1.Rows[i].Cells[1].Value + "','" + Convert.ToInt32(dataGridView1.Rows[i].Cells[2].Value) + "','" + Convert.ToDouble(dataGridView1.Rows[i].Cells[3].Value) + "','" + Convert.ToDouble(dataGridView1.Rows[i].Cells[4].Value) + "')");
                con.mysqlconnection();
                con.nonquery();
            }

并且还需要知道如何在datagridview列中仅显示2位小数。

1 个答案:

答案 0 :(得分:0)