Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธี UInt16.ToString ใน C # พร้อมตัวอย่าง


เมธอด UInt16.ToString() ใน C# ใช้เพื่อแปลงค่าตัวเลขของอินสแตนซ์ UInt16 ปัจจุบันเป็นการแสดงสตริงที่เทียบเท่า

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public override string ToString();

ตัวอย่าง

ให้เราดูตัวอย่างการใช้เมธอด UInt16.ToString() -

using System;
public class Demo {
   public static void Main(){
      ushort val1 = 100;
      ushort 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

ตัวอย่าง

ให้เราดูตัวอย่างอื่นเพื่อใช้เมธอด UInt16.ToString() -

using System;
public class Demo {
   public static void Main(){
      ushort val1 = 0;
      ushort val2 = UInt16.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) = 65535
Return value (comparison) = False
val1 != val2