get only the first two numbers ofan int c# code example
Example 1: on in get first two digit start with two numbers c#
while (number >= 10)
number /= 10;
Example 2: on in get first two digit start with two numbers c#
12,552,893 ticks
while (number >= 10)
number /= 10;
12,552,893 ticks