How to extract and display the year from DateTime in C#

2 Answers

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime now = DateTime.Now;

            string year = now.ToString("y ");

            Console.WriteLine($"{year}");
        }
    }
}


/*
run:
 
18

*/

 



answered Aug 14, 2018 by avibootz
0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime now = DateTime.Now;

            string year = now.ToString("yyyy ");

            Console.WriteLine($"{year}");
        }
    }
}


/*
run:
 
2018

*/

 



answered Aug 14, 2018 by avibootz

Related questions

1 answer 137 views
2 answers 193 views
1 answer 158 views
3 answers 228 views
1 answer 156 views
1 answer 116 views
1 answer 132 views
...