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

DateTime.ToShortDateString() วิธีการใน C #


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

ไวยากรณ์

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

public string ToShortDateString ();

ตัวอย่าง

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

using System;
public class Demo {
   public static void Main() {
      DateTime d = new DateTime(2019, 08, 11, 9, 10, 45);
      Console.WriteLine("Date = {0}", d);
      string str = d.ToShortDateString();
      Console.WriteLine("Short date string representation = {0}", str);
   }
}

ผลลัพธ์

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

Date = 8/11/2019 9:10:45 AM
Short date string representation = 8/11/2019

ตัวอย่าง

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

using System;
using System.Globalization;
public class Demo {
   public static void Main() {
      DateTime d = DateTime.Now;
      Console.WriteLine("Date = {0}", d);
      Console.WriteLine("Current culture = "+CultureInfo.CurrentCulture.Name);
      var pattern = CultureInfo.CurrentCulture.DateTimeFormat;
      string str = d.ToShortDateString();
      Console.WriteLine("Short date string = {0}", pattern.ShortDatePattern);
      Console.WriteLine("Short date string representation = {0}", str);
   }
}

ผลลัพธ์

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

Date = 10/16/2019 8:56:40 AM
Current culture = en-US
Short date string = M/d/yyyy
Short date string representation = 10/16/2019