is it possible to get the decimal places only and convert it to whole number??
var Decimal = 1.25;
i want to get only the .25 and convert it to whole number so it will be like
25
is that possible??
I tried searching on the net it seems that i cant any answer to my question so i tried to ask here
i just need to get the decimal places and convert it to whole number again basically make it an int data type
any idea on how to solve my problem?