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

รูปแบบสตริงสำหรับ DateTime ใน C #


จัดรูปแบบ DateTime โดยใช้วิธี String.Format

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

ตัวอย่าง

using System;

static class Demo {
   static void Main() {
      DateTime d = new DateTime(2018, 2, 8, 12, 7, 7, 123);

      Console.WriteLine(String.Format("{0:y yy yyy yyyy}", d));
      Console.WriteLine(String.Format("{0:M MM MMM MMMM}", d));
      Console.WriteLine(String.Format("{0:d dd ddd dddd}", d));
   }
}

ด้านบนเราได้ตั้งค่าวัตถุคลาส DateTime ก่อน -

DateTime d = new DateTime(2018, 2, 8, 12, 7, 7, 123);

ในการจัดรูปแบบ เราได้ใช้วิธี String.Format() และแสดงวันที่ในรูปแบบต่างๆ

String.Format("{0:y yy yyy yyyy}", d)
String.Format("{0:M MM MMM MMMM}", d)
String.Format("{0:d dd ddd dddd}", d