TimeOnly 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| Name | Description |
|---|---|
| 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)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
지정된 수의 틱을 TimeOnly 사용하여 구조체의 새 인스턴스를 초기화합니다.
public:
TimeOnly(long ticks);
public TimeOnly(long ticks);
new TimeOnly : int64 -> TimeOnly
Public Sub New (ticks As Long)
매개 변수
- ticks
- Int64
00:00:00.000000 이후 100나노초 단위의 수로 표현된 하루 중 시간입니다.
적용 대상
TimeOnly(Int32, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
구조체의 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)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
구조체의 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)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
구조체의 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)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
구조체의 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)입니다.