我有这段代码计算datagridview中所有行的2个相乘列的摘要。
private void vypocti_odvody(int price, int vat, int tot_rows2)
{
try
{
double outVal = 0;
foreach (DataGridViewRow row in dataGridView1.Rows)
{
outVal = outVal + (Convert.ToDouble(row.Cells[price].Value)/100) * Convert.ToDouble(row.Cells[vat].Value) + (Convert.ToDouble(row.Cells[price].Value));
}
// s_ub_celk.Text = (((a / 100) * b) + a).ToString();
Convert.ToDecimal ( result.Text = outVal.ToString()) ;
}
catch (Exception ex)
{
MessageBox.Show("Chybové hlášení K3 " + ex.Message.ToString());
}
}
如何提高小数位?现在结果是这样的:123,5484250 我希望只有 2 个小数位,结果例如 123,55。
对不起,我的英语很差,我希望“小数位”能表达我真正的意思。为了更好地理解,我举了一个例子。
谢谢大家的时间,评论和回答。