como puedo calcular el subtotal, igv (18%), y total de una operacion en c# ?
txtVtotal.Text = dr.GetSqlDecimal(0).ToString();
double subtotal = ((double.Parse(txtVtotal.Text)) / 1.18).ToString();
double igv = double.Parse(txtVtotal.Text) + double.Parse(txtVSubtotal.Text);
txtVigv.Text = igv.ToString();
Considerando que el valor total lo saco de una data en SQL