Syntax-
int DateTime.DayOfYear;
Example to demonstrate an example of DateTime.DayOfYear Property
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//creating an object of DateTime class
//and, initializing it with the current time
//using "Now"
DateTime dt = DateTime.Now;
//getting the day of the year
string dYear = dt.DayOfYear.ToString();
//printing current date & time
Console.WriteLine("Current date & time is: " + dt.ToString());
//printing the day of the week
Console.WriteLine("The day of the year is : " + dYear);
//just to print a new line
Console.WriteLine();
}
}
}
Output-
Current date & time is: 10/24/2019 8:31:15 AM
The day of the year is : 297