[筆記][日期][C#] 找出當月的最後一天

 情境

如果要在C#來取得當月的最後一天可以使用DateTime.DaysInMonth這個方法來快速取得。
using System;
                   
public class Program
{
    public static void Main()
    {
        var i = DateTime.DaysInMonth(2022, 02);
        Console.WriteLine($"{i}");
    }
}

結果

28

留言

熱門文章