लंबा प्रकार एक 64-बिट हस्ताक्षरित पूर्णांक का प्रतिनिधित्व करता है।
एक 64-बिट हस्ताक्षरित पूर्णांक को दशमलव में परोक्ष रूप से बदलने के लिए, पहले एक लंबा मान सेट करें।
long val = 989678876876876;
लंबे को दशमलव में बदलने के लिए, मान निर्दिष्ट करें।
dec = val;
आइए एक और उदाहरण देखें -
उदाहरण
using System; public class Demo { public static void Main() { long val = 76755565656565; decimal dec; Console.WriteLine("Implicit conversion from 64-bit signed integer (long) to Decimal"); dec = val; Console.WriteLine("Decimal : "+dec); } }
आउटपुट
Implicit conversion from 64-bit signed integer (long) to Decimal Decimal : 76755565656565