How to format the following result in a currency with two decimal places?
string query2 = "SELECT SUM (Price) FROM Bill";
OleDbDataAdapter dAdapter2 = new OleDbDataAdapter(query2, DBconn);
DataTable source = new DataTable();
dAdapter2.Fill(source);
TotalValueLabel.Text = source.Rows[0][0].ToString();
source
share