Home » C#

C# | DateTime.TimeOfDay Property with Example

DateTime.TimeOfDay Property: Here, we are going to learn about the TimeOfDay Property of DateTime class with example in C#.
Submitted by IncludeHelp, on October 24, 2019

DateTime.TimeOfDay Property

DateTime.TimeOfDay Property is used to get the time of the day of this object. It's a GET property of DateTime class.

Syntax:

    TimeSpan DateTime.Year;

Return value:

The return type of this Property is TimeSpan, it returns the time of the day of this object.

Example to demonstrate example of DateTime.TimeOfDay 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 time of the day
            string time = dt.TimeOfDay.ToString();

            //printing current date & time 
            Console.WriteLine("Current date & time is: " + dt.ToString());
            //printing the day of the week
            Console.WriteLine("The time is : " + time);

            //just to print a new line
            Console.WriteLine();
        }
    }
}

Output

Current date & time is: 10/24/2019 8:23:35 AM
The time is : 08:23:35.9734600


Comments and Discussions!










Copyright © 2023 www.includehelp.com. All rights reserved.