Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DateOnly.ToDateTime Method

Definition

Namespace:
System
Assembly:
System.Runtime.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
ToDateTime(TimeOnly)

Returns a DateTime that is set to the date of this DateOnly instance and the time of specified input time.

ToDateTime(TimeOnly, DateTimeKind)

Returns a DateTime instance with the specified input kind that is set to the date of this DateOnly instance and the time of specified input time.

ToDateTime(TimeOnly)

Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs

Returns a DateTime that is set to the date of this DateOnly instance and the time of specified input time.

public:
 DateTime ToDateTime(TimeOnly time);
public DateTime ToDateTime(TimeOnly time);
member this.ToDateTime : TimeOnly -> DateTime
Public Function ToDateTime (time As TimeOnly) As DateTime

Parameters

time
TimeOnly

The time of the day.

Returns

The DateTime instance composed of the date of the current DateOnly instance and the time specified by the input time.

Remarks

The Kind property of the resulting DateTime is initialized to DateTimeKind.Unspecified.

Applies to

ToDateTime(TimeOnly, DateTimeKind)

Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs
Source:
DateOnly.cs

Returns a DateTime instance with the specified input kind that is set to the date of this DateOnly instance and the time of specified input time.

public:
 DateTime ToDateTime(TimeOnly time, DateTimeKind kind);
public DateTime ToDateTime(TimeOnly time, DateTimeKind kind);
member this.ToDateTime : TimeOnly * DateTimeKind -> DateTime
Public Function ToDateTime (time As TimeOnly, kind As DateTimeKind) As DateTime

Parameters

time
TimeOnly

The time of the day.

kind
DateTimeKind

One of the enumeration values that indicates whether ticks specifies a local time, Coordinated Universal Time (UTC), or neither.

Returns

The DateTime instance composed of the date of the current DateOnly instance and the time specified by the input time.

Applies to


Feedback

Was this page helpful?