DateTime.Millisecond 속성

정의

이 인스턴스가 나타내는 날짜의 밀리초 구성 요소를 가져옵니다.

public:
 property int Millisecond { int get(); };
public int Millisecond { get; }
member this.Millisecond : int
Public ReadOnly Property Millisecond As Integer

속성 값

Int32

0부터 999 사이의 값으로 표시되는 밀리초 구성 요소입니다.

예제

다음 예제는 Millisecond 속성입니다.

System::DateTime moment = System::DateTime(
   1999, 1, 13, 3, 57, 32, 11 );

// Year gets 1999.
int year = moment.Year;

// Month gets 1 (January).
int month = moment.Month;

// Day gets 13.
int day = moment.Day;

// Hour gets 3.
int hour = moment.Hour;

// Minute gets 57.
int minute = moment.Minute;

// Second gets 32.
int second = moment.Second;

// Millisecond gets 11.
int millisecond = moment.Millisecond;
System.DateTime moment = new System.DateTime(
                                1999, 1, 13, 3, 57, 32, 11);
// Year gets 1999.
int year = moment.Year;

// Month gets 1 (January).
int month = moment.Month;

// Day gets 13.
int day = moment.Day;

// Hour gets 3.
int hour = moment.Hour;

// Minute gets 57.
int minute = moment.Minute;

// Second gets 32.
int second = moment.Second;

// Millisecond gets 11.
int millisecond = moment.Millisecond;
open System


let moment = System.DateTime(1999, 1, 13, 3, 57, 32, 11)

// Year gets 1999.
let year = moment.Year

// Month gets 1 (January).
let month = moment.Month

// Day gets 13.
let day = moment.Day

// Hour gets 3.
let hour = moment.Hour

// Minute gets 57.
let minute = moment.Minute

// Second gets 32.
let second = moment.Second

// Millisecond gets 11.
let millisecond = moment.Millisecond
Dim moment As New System.DateTime(1999, 1, 13, 3, 57, 32, 11)

' Year gets 1999.
Dim year As Integer = moment.Year

' Month gets 1 (January).
Dim month As Integer = moment.Month

' Day gets 13.
Dim day As Integer = moment.Day

' Hour gets 3.
Dim hour As Integer = moment.Hour

' Minute gets 57.
Dim minute As Integer = moment.Minute

' Second gets 32.
Dim second As Integer = moment.Second

' Millisecond gets 11.
Dim millisecond As Integer = moment.Millisecond

설명

"fff" 형식 지정자를 사용하여 속성의 Millisecond 문자열 표현을 표시할 수 있습니다. 예를 들어 다음 코드는 콘솔에 대한 날짜 및 시간의 밀리초 수를 포함하는 문자열을 표시합니다.

DateTime date1 = new DateTime(2008, 1, 1, 0, 30, 45, 125);
Console.WriteLine("Milliseconds: {0:fff}",
                  date1);           // displays Milliseconds: 125
let date1 = DateTime(2008, 1, 1, 0, 30, 45, 125)
printfn $"Milliseconds: {date1:fff}" // displays Milliseconds: 125
Dim date1 As Date = New Date(2008, 1, 1, 0, 30, 45, 125)
Console.WriteLine("Milliseconds: {0:fff}", _
                  date1)       ' displays Milliseconds: 125

"o" 표준 형식 지정자를 사용하여 날짜 및 시간 값의 다른 구성 요소와 밀리초 구성 요소를 함께 표시할 수도 있습니다. 예를 들면 다음과 같습니다.

DateTime date2 = new DateTime(2008, 1, 1, 0, 30, 45, 125);
Console.WriteLine("Date: {0:o}",
                  date2);
// Displays the following output to the console:
//      Date: 2008-01-01T00:30:45.1250000
let date2 = DateTime(2008, 1, 1, 0, 30, 45, 125)
printfn $"Date: {date2:o}"

// Displays the following output to the console:
//      Date: 2008-01-01T00:30:45.1250000
Dim date2 As New Date(2008, 1, 1, 0, 30, 45, 125)
Console.WriteLine("Date: {0:o}", date2)           
' Displays the following output to the console:
'      Date: 2008-01-01T00:30:45.1250000

그러나 "o" 형식 지정자는 라운드트립 또는 값 저장보다 표시하기 DateTime 위한 것이 적습니다. 다음 예제와 같이 사용자 지정 형식 문자열을 사용하여 다른 날짜 및 시간 구성 요소와 밀리초 단위를 표시할 수도 있습니다.

DateTime date3 = new DateTime(2008, 1, 1, 0, 30, 45, 125);
Console.WriteLine("Date with milliseconds: {0:MM/dd/yyy HH:mm:ss.fff}",
                  date3);
// Displays the following output to the console:
//       Date with milliseconds: 01/01/2008 00:30:45.125
let date3 = DateTime(2008, 1, 1, 0, 30, 45, 125)
printfn $"""Date with milliseconds: {date3.ToString "MM/dd/yyy HH:mm:ss.fff"}"""

// Displays the following output to the console:
//       Date with milliseconds: 01/01/2008 00:30:45.125
Dim date3 As New Date(2008, 1, 1, 0, 30, 45, 125)
Console.WriteLine("Date with milliseconds: {0:MM/dd/yyy HH:mm:ss.fff}", _
                  date3)
' Displays the following output to the console:
'       Date with milliseconds: 01/01/2008 00:30:45.125

적용 대상