我想知道如何使用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位小数。
答案 0 :(得分:0)