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
That may be overhead but should work.
double yourDouble = 1.05; string stringForm = yourDouble.ToString(); int dotPosition = stringForm.IndexOf("."); decimal decimalPart = Decimal.Parse("0" + stringForm.Substring(dotPosition)); Console.WriteLine(decimalPart); // 0.05