Get the decimal part from a double
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
the best of the best way is:
var floatNumber = 12.5523;
var x = floatNumber - Math.Truncate(floatNumber);
result you can convert however you like
var decPlaces = (int)(((decimal)number % 1) * 100);
This presumes your number only has two decimal places.