C# में UInt64.ToString () विधि का उपयोग वर्तमान UInt64 उदाहरण के संख्यात्मक मान को इसके समकक्ष स्ट्रिंग प्रतिनिधित्व में बदलने के लिए किया जाता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public override string ToString();
उदाहरण
आइए अब UInt64.ToString() विधि को लागू करने के लिए एक उदाहरण देखें -
using System;
public class Demo {
public static void Main(){
ulong val1 = 465656665;
ulong val2 = 232525678;
Console.WriteLine("Value1 (String representation) = "+val1.ToString());
Console.WriteLine("Value2 (String representation) = "+val2.ToString());
bool res = val1.Equals(val2);
Console.WriteLine("Return value (comparison) = "+res);
if (res)
Console.WriteLine("val1 = val2");
else
Console.WriteLine("val1 != val2");
}
} आउटपुट
यह निम्नलिखित आउटपुट देगा -
Value1 (String representation) = 465656665 Value2 (String representation) = 232525678 Return value (comparison) = False val1 != val2
उदाहरण
आइए अब UInt64.ToString() विधि को लागू करने के लिए एक और उदाहरण देखें -
using System;
public class Demo {
public static void Main(){
ulong val1 = 0;
ulong val2 = UInt64.MaxValue;
Console.WriteLine("Value1 (String representation) = "+val1.ToString());
Console.WriteLine("Value2 (String representation) = "+val2.ToString());
bool res = val1.Equals(val2);
Console.WriteLine("Return value (comparison) = "+res);
if (res)
Console.WriteLine("val1 = val2");
else
Console.WriteLine("val1 != val2");
}
} आउटपुट
यह निम्नलिखित आउटपुट देगा -
Value1 (String representation) = 0 Value2 (String representation) = 18446744073709551615 Return value (comparison) = False val1 != val2