How can i truncate the leading digit of double value in C#,I have tried Math.Round(doublevalue,2) but not giving the require result. and i didn\'t find any other method in M
object number = 12.123345534; string.Format({"0:00"},number.ToString());