Hey everyone,
is this the most efficient way to round a decimal number to two decimal places?
txtXaxis.Text = String.Format("{0:F2}", A); //show 2 decimal places
txtYaxis.Text = String.Format("{0:F2}", V); //show 2 decimal places
thanks!