เมธอด UInt32.ToString() ใน C# ใช้เพื่อแปลงค่าตัวเลขของอินสแตนซ์ UInt32 ปัจจุบันเป็นการแสดงสตริงที่เทียบเท่า
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public override string ToString();
ตัวอย่าง
ให้เราดูตัวอย่างการใช้เมธอด UInt32.ToString() -
using System; public class Demo { public static void Main(){ uint val1 = 100; uint val2 = 80; 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) = 100 Value2 (String representation) = 80 Return value (comparison) = False val1 != val2
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อนำเมธอด UInt32.ToString() ไปใช้ −
using System; public class Demo { public static void Main(){ uint val1 = 0; uint val2 = UInt32.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) = 4294967295 Return value (comparison) = False val1 != val2