Date Konstruktory

Definice

Přetížení

Date(DateTime)

Konstruktor pro třídu Date.

Date(Int32, Int32, Int32)

Konstruktor pro třídu Date.

Date(DateTime)

Konstruktor pro třídu Date.

public Date(DateTime dateTime);
new Microsoft.Spark.Sql.Types.Date : DateTime -> Microsoft.Spark.Sql.Types.Date
Public Sub New (dateTime As DateTime)

Parametry

dateTime
DateTime

Objekt DateTime

Platí pro

Date(Int32, Int32, Int32)

Konstruktor pro třídu Date.

public Date(int year, int month, int day);
new Microsoft.Spark.Sql.Types.Date : int * int * int -> Microsoft.Spark.Sql.Types.Date
Public Sub New (year As Integer, month As Integer, day As Integer)

Parametry

year
Int32

Rok (1 až 9999)

month
Int32

Měsíc (1 až 12)

day
Int32

Den (1 až počet dnů v měsíci)

Platí pro