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

C # ทั่วไป วันที่ เวลาสั้น ๆ (g) ตัวระบุรูปแบบ


ตัวระบุรูปแบบ Generate Date Short Time คือการรวมกันของรูปแบบวันที่แบบสั้น ("d") และแบบสั้น ("t") คั่นด้วยช่องว่าง

ตั้งวันที่โดยใช้ DateTime

DateTime dt = new DateTime(2018, 10, 2, 7, 59, 20);

ตอนนี้ ใช้ตัวระบุรูปแบบ (“g”)

dt.ToString("g", DateTimeFormatInfo.InvariantInfo));

ตัวอย่าง

using System;
using System.Globalization;
class Demo {
   static void Main() {
      DateTime dt = new DateTime(2018, 10, 2, 7, 59, 20);
      Console.WriteLine(dt.ToString("g", DateTimeFormatInfo.InvariantInfo));
      Console.WriteLine(dt.ToString("g", CultureInfo.CreateSpecificCulture("en-us")));
   }
}

ผลลัพธ์

10/02/2018 07:59
10/2/2018 7:59 AM