Hola soy novato qué alguien amablemente me dirá cómo convertir los valores de este pedazo de código para un doble decimal/aC# redondeada .. gracias de antemanoconvertir al doble con dos decimales
DataTable dtValues = new DataTable("GetValues");
strValueNumber = ValueNumber[0].ToString();
dtGetValues = SQLMethods.GetValues(strValueNumber);
total = 0;
for (int i = 0; i < dtValues.Rows.Count; i++)
{
total1 = total1 + Convert.ToInt32(dtGetValues.Rows[i]["total_1"]);
total2 = total2 + Convert.ToDouble(dtGetValues.Rows[i]["total_2l"]) * .45;
tbtotal1.Text = total1.ToString();
tbtotal2.Text = total2.ToString();
}
}
catch (Exception ex)
{
MessageBox.Show("Error in returning selected Values. " +
"Processed with error:" + ex.Message);
}
}
Probablemente debería establecer los cuadros de texto fuera del bucle. 'total' se declara pero no se usa. 'total1' y' total2' deben ser ste a cero antes del ciclo. – MiMo