เมธอด UInt64.ToString() ใน C# ใช้เพื่อแปลงค่าตัวเลขของอินสแตนซ์ 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