I want to receive the number after the decimal dot in the form of an integer. For example, only 05 from 1.05 or from 2.50 only 50 not 0.50
There is a cleaner and ways faster solution than the 'Math.Truncate' approach:
double frac = value % 1;