DateOnly.ToDateTime Method

Definition

Overloads

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

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.

Applies to

ToDateTime(TimeOnly, DateTimeKind)

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