Share via


TimeOnly 생성자

정의

오버로드

TimeOnly(Int64)

지정된 수의 틱을 TimeOnly 사용하여 구조체의 새 인스턴스를 초기화합니다.

TimeOnly(Int32, Int32)

구조체의 새 인스턴스를 TimeOnly 지정된 시간 및 분으로 초기화합니다.

TimeOnly(Int32, Int32, Int32)

구조체의 새 인스턴스를 TimeOnly 지정된 시간, 분 및 초로 초기화합니다.

TimeOnly(Int32, Int32, Int32, Int32)

구조체의 TimeOnly 새 인스턴스를 지정된 시간, 분, 초 및 밀리초로 초기화합니다.

TimeOnly(Int32, Int32, Int32, Int32, Int32)

구조체의 TimeOnly 새 인스턴스를 지정된 시간, 분, 초 및 밀리초로 초기화합니다.

TimeOnly(Int64)

지정된 수의 틱을 TimeOnly 사용하여 구조체의 새 인스턴스를 초기화합니다.

public:
 TimeOnly(long ticks);
public TimeOnly (long ticks);
new TimeOnly : int64 -> TimeOnly
Public Sub New (ticks As Long)

매개 변수

ticks
Int64

00:00:00.00.000000 이후 100나노초 단위의 수로 표현된 하루 중 시간입니다.

적용 대상

TimeOnly(Int32, Int32)

구조체의 새 인스턴스를 TimeOnly 지정된 시간 및 분으로 초기화합니다.

public:
 TimeOnly(int hour, int minute);
public TimeOnly (int hour, int minute);
new TimeOnly : int * int -> TimeOnly
Public Sub New (hour As Integer, minute As Integer)

매개 변수

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

적용 대상

TimeOnly(Int32, Int32, Int32)

구조체의 새 인스턴스를 TimeOnly 지정된 시간, 분 및 초로 초기화합니다.

public:
 TimeOnly(int hour, int minute, int second);
public TimeOnly (int hour, int minute, int second);
new TimeOnly : int * int * int -> TimeOnly
Public Sub New (hour As Integer, minute As Integer, second As Integer)

매개 변수

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

second
Int32

초(0부터 59까지)

적용 대상

TimeOnly(Int32, Int32, Int32, Int32)

구조체의 TimeOnly 새 인스턴스를 지정된 시간, 분, 초 및 밀리초로 초기화합니다.

public:
 TimeOnly(int hour, int minute, int second, int millisecond);
public TimeOnly (int hour, int minute, int second, int millisecond);
new TimeOnly : int * int * int * int -> TimeOnly
Public Sub New (hour As Integer, minute As Integer, second As Integer, millisecond As Integer)

매개 변수

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

second
Int32

초(0부터 59까지)

millisecond
Int32

밀리초(0~999)입니다.

적용 대상

TimeOnly(Int32, Int32, Int32, Int32, Int32)

구조체의 TimeOnly 새 인스턴스를 지정된 시간, 분, 초 및 밀리초로 초기화합니다.

public:
 TimeOnly(int hour, int minute, int second, int millisecond, int microsecond);
public TimeOnly (int hour, int minute, int second, int millisecond, int microsecond);
new TimeOnly : int * int * int * int * int -> TimeOnly
Public Sub New (hour As Integer, minute As Integer, second As Integer, millisecond As Integer, microsecond As Integer)

매개 변수

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

second
Int32

초(0부터 59까지)

millisecond
Int32

밀리초(0~999)입니다.

microsecond
Int32

마이크로초(0~999)입니다.

적용 대상