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

โปรแกรม C# แสดงจำนวนวันในหนึ่งเดือน


ใช้ DaysInMonth เพื่อแสดงจำนวนวันในหนึ่งเดือน

เพิ่มปีและเดือนเป็นพารามิเตอร์สำหรับวิธี DaysInMonth() -

DateTime.DaysInMonth(2018, 8);

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
public class Demo {
   public static void Main() {
      Console.WriteLine("Today = {0}", DateTime.Today);
      int num_days = DateTime.DaysInMonth(2018, 8);
      Console.WriteLine("Days in August: "+num_days);
   }
}

ผลลัพธ์

Today = 9/4/2018 12:00:00 AM
Days in August: 31