Member-only story
TimeOnly in C# with Examples
The TimeOnly in C# is available in the System namespace. TimeOnly in C# is designed to represent a time of day without the date portion, providing a more efficient and accurate way to work with time when you don’t need to consider the date. TimeOnly in C# is an improvement over using the DateTime structure, which always includes date information.

Features with TimeOnly in C#:
Creating a TimeOnly in C#:
You can create a TimeOnly instance to represent a specific time of day. It requires hours and minutes as parameters:
using System;
TimeOnly time = new TimeOnly(14, 30, 26);
Accessing TimeOnly Components in C#:
You can access the hour and minute components of a TimeOnly object:
int hour = time.Hour; // 14
int minute = time.Minute; // 30
int second = time.Second; // 26
TimeOnly ToString in C#
You can convert a TimeOnly instance to a string using the ToString method or a custom format:
string defaultFormatted = time.ToString(); // "14:30:00"
string customFormatted = time.ToString("hh:mm tt"); // "02:30 PM"
Arithmetic Operations of TimeOnly in C#:
You can perform arithmetic operations with TimeOnly objects, such as addition and subtraction:
TimeOnly laterTime = time.Add(new TimeSpan(5, 0, 0)); // 7: 30 PM
TimeOnly earlierTime = time.Add(new TimeSpan(-2, 0, 0)); // 12:20 PM
Comparison of TimeOnly in C#:
You can compare TimeOnly objects using comparison operators (e.g., <,>, <=, >=) to check which one is greater or smaller:
bool isGreaterThan = laterTime > earlierTime; // Compare two TimeOnly instances
TimeOnly in C# : Example
using System;
public class Program
{
public static void Main(string[] args)
{
TimeOnly time = new TimeOnly(14, 30, 26);
int hour = time.Hour; // 14
int minute = time.Minute; // 30
int second = time.Second; // 26
Console.WriteLine("Hour is = {0}", hour);
Console.WriteLine("Minute is = {0}"…