निर्दिष्ट दशमलव के मान को समतुल्य 64-बिट अहस्ताक्षरित पूर्णांक में बदलने के लिए, कोड इस प्रकार है -
उदाहरण
using System; public class Demo { public static void Main() { Decimal val = 99.29m; Console.WriteLine("Decimal value = "+val); ulong res = Decimal.ToUInt64(val); Console.WriteLine("64-bit unsigned integer = "+res); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Decimal value = 99.29 64-bit unsigned integer = 99
उदाहरण
आइए एक और उदाहरण देखें -
using System; public class Demo { public static void Main(){ Decimal val = 0.001m; Console.WriteLine("Decimal value = "+val); ulong res = Decimal.ToUInt64(val); Console.WriteLine("64-bit unsigned integer = "+res); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Decimal value = 0.001 64-bit unsigned integer = 0