DateAndTime.Now 属性

定义

返回一个值,该值包含与系统对应的当前日期和时间。

public:
 static property DateTime Now { DateTime get(); };
public static DateTime Now { get; }
static member Now : DateTime
Public ReadOnly Property Now As DateTime

属性值

根据系统确定的当前日期和时间。

示例

以下示例使用 Now 属性返回当前系统日期和时间。

Dim ThisMoment As Date
' The following statement calls the Get procedure of the Visual Basic Now property.
ThisMoment = Now

注解

若要设置系统日期,请使用 Today 属性。 若要设置系统时间,请使用 TimeOfDay 属性。

适用于

另请参阅