C# में Decimal.Truncate () विधि का उपयोग निर्दिष्ट दशमलव के अभिन्न अंकों को वापस करने के लिए किया जाता है। याद रखें, किसी भी भिन्नात्मक अंक को छोड़ दिया जाता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public static decimal Truncate (decimal val);
ऊपर, वैल छोटा करने के लिए दशमलव संख्या है।
उदाहरण
आइए अब Decimal.Truncate() मेथड को लागू करने के लिए एक उदाहरण देखें -
using System; public class Demo { public static void Main(){ Decimal val = 6576.876m; Console.WriteLine("Decimal value = "+val); ulong res = Decimal.ToUInt64(val); Console.WriteLine("64-bit unsigned integer = "+res); Decimal val2 = Decimal.Truncate(val); Console.WriteLine("Integral digits of the decimal = "+val2); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Decimal value = 6576.876 64-bit unsigned integer = 6576 Integral digits of the decimal = 6576
उदाहरण
आइए अब दशमलव.ट्रंकेट () पद्धति को लागू करने के लिए एक और उदाहरण देखें -
using System; public class Demo { public static void Main(){ Decimal val = 28676.935m; Console.WriteLine("Decimal value = "+val); Decimal val2 = Decimal.Truncate(val); Console.WriteLine("Integral digits of the decimal = "+val2); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Decimal value = 28676.935 Integral digits of the decimal = 28676