This i what I am trying to achieve:
If a double has more than 3 decimal places, I want to truncate any decimal places beyond the third. (do not round.)
double example = 3.1416789645; double output = Convert.ToDouble(example.ToString("N3"));