I need to format a double value to one decimal place without it rounding.
double value = 3.984568438706 string result = \"\";
What I have tried
result=string.Format("{0:0.0}",Math.Truncate(value*10)/10);