Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var firstInput = Console.ReadLine();
            var secInput   = Console.ReadLine();

            DateMod.CalculateDays(firstInput, secInput);
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var firstDate  = Console.ReadLine();
            var secondDate = Console.ReadLine();

            var dateModifier = new DateMod();

            Console.WriteLine(dateModifier.CalculateDays(firstDate, secondDate));
        }