how to seperate front of decimal and back of decimal in C# code example
Example 1: how to seperate front of decimal and back of decimal in C#
//If you want the bit of a Decimal value to the LEFT of the dot, you need to do this:
Math.Truncate(number)
Example 2: how to seperate front of decimal and back of decimal in C#
//If you want the bit of a Decimal value to the LEFT of the dot, you need to do this:
Math.Truncate(number)