ASP.NET C#

How to Add Hours to Current Date Time in C#2 min read

The following asp.net c# example code demonstrate us how can we add one or more hours to a DateTime object programmatically at run time. .Net framework’s DateTime.AddHours() method return a new DateTime object that add the specified number of hours to the value of this instance.

DateTime.AddHours() method have a required parameter. This parameter name is ‘value’ and its data type is System.Double. This Double value represent a number of whole and fractional hours. This parameter value can be negative or positive. So, we can also subtract hours from a DateTime object if we pass a negative value as parameter.




DateTime.AddHours() method return a System.DateTime type object. The return DateTime object is the sum of DateTime instance and the number of hours passes by parameter. The fractional part of the ‘value’ parameter value is the fractional part of an hour. Such as Parameter value 5.5 is equivalent to 5 hours and 30 minutes.

This method does not change/modify the provided dateTime object instead it return a new DateTime object which is the result of this operation.

Add hours to datetime variable in C#

Add hours to datetime variable in C#

ASP.NET Code:

 

Leave a Comment