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

วิธี Double.ToString ใน C #


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

ไวยากรณ์

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

public override string ToString ();

ตัวอย่าง

ให้เรามาดูตัวอย่างการใช้งาน Double.ToString() method −

using System;
public class Demo{
   public static void Main(){
      double d = 45.7878d;
      string str = d.ToString();
      Console.WriteLine("String = "+str);
   }
}

ผลลัพธ์

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

String = 45.7878

ตัวอย่าง

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

using System;
public class Demo{
   public static void Main(){
      double d = -68.89d;
      string str = d.ToString();
      Console.WriteLine("String = "+str);
   }
}

ผลลัพธ์

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

String = -68.89