To convert the value of the specified Decimal to the equivalent 32-bit unsigned integer, the code is as follows −
Example
using System;
public class Demo {
public static void Main() {
Decimal val = 0.001m;
Console.WriteLine("Decimal value = "+val);
uint res = Decimal.ToUInt32(val);
Console.WriteLine("32-bit unsigned integer = "+res);
}
}Output
This will produce the following output −
Decimal value = 0.001 32-bit unsigned integer = 0
Example
Let us see another example −
using System;
public class Demo {
public static void Main() {
Decimal val = 67.487m;
Console.WriteLine("Decimal value = "+val);
uint res = Decimal.ToUInt32(val);
Console.WriteLine("32-bit unsigned integer = "+res);
}
}Output
This will produce the following output −
Decimal value = 67.487 32-bit unsigned integer = 67