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

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


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

ไวยากรณ์

ไวยากรณ์มีดังนี้ −

public override string ToString ();

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
public class Demo {
   public static void Main(){
      sbyte s1 = 10;
      sbyte s2 = 100;
      Console.WriteLine("Value of S1 = "+s1);
      Console.WriteLine("Value of S2 = "+s2);
      int res = s1.CompareTo(s2);
      if (res > 0)
         Console.WriteLine("s1 > s2");
      else if (res < 0)
         Console.WriteLine("s1 < s2");
      else
         Console.WriteLine("s1 = s2");
      Console.WriteLine("\nHashCode for s1 = "+s1.GetHashCode());
      Console.WriteLine("GetTypeCode for s1 = "+s1.GetTypeCode());
      Console.WriteLine("String representation for s1 = "+s1.ToString());
      Console.WriteLine("\nHashCode for s2 = "+s2.GetHashCode());
      Console.WriteLine("GetTypeCode for s2 = "+s2.GetTypeCode());
      Console.WriteLine("String representation for s2 = "+s2.ToString());
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value of S1 = 10
Value of S2 = 100
s1 − s2
HashCode for s1 = 2570
GetTypeCode for s1 = SByte
String representation for s1 = 10
HashCode for s2 = 25700
GetTypeCode for s2 = SByte
String representation for s2 = 100

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
public class Demo {
   public static void Main(){
      sbyte s1 = 99;
      sbyte s2 = SByte.MaxValue;
      Console.WriteLine("Value of S1 = "+s1);
      Console.WriteLine("Value of S2 = "+s2);
      Console.WriteLine("Is s1 and s2 equal? = "+s1.Equals(s2));
      int res = s1.CompareTo(s2);
      if (res > 0)
         Console.WriteLine("s1 > s2");
      else if (res < 0)
         Console.WriteLine("s1 < s2");
      else
         Console.WriteLine("s1 = s2");
      Console.WriteLine("String representation for s1 = "+s1.ToString());
      Console.WriteLine("String representation for s2 = "+s2.ToString());
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value of S1 = 99
Value of S2 = 127 Is s1 and s2 equal? = False
s1 < s2
String representation for s1 = 99
String representation for s2 = 127