How to get the number of days in a month based on specific year in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int days = DateTime.DaysInMonth(2018, 8); // August
            Console.WriteLine(days);

            days = DateTime.DaysInMonth(2018, 2); // February
            Console.WriteLine(days);
        }
    }
}


/*
run:
      
31
28
  
*/

 



answered Aug 5, 2018 by avibootz
...