In C#, I\'m trying to get the last two decimal places of a double with NO rounding. I\'ve tried everything from Math.Floor to Math.Truncate and nothin
Math.Floor
Math.Truncate
double d = Math.Truncate(d * 100) / 100;