I need to format a double value to one decimal place without it rounding.
double value = 3.984568438706 string result = \"\";
What I have tried
( Math.Truncate( ( value * 10 ) ) / 1000 ).ToString( "#.#%" )