DateTime.Millisecond Propriedade

Definição

Obtém o componente de milissegundos da data representada por essa instância.

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

Valor da propriedade

Int32

O componente de milissegundos, expresso como um valor entre 0 e 999.

Exemplos

O exemplo a seguir demonstra a Millisecond propriedade .

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;
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

Comentários

Você pode exibir a representação de cadeia de caracteres da Millisecond propriedade usando o especificador de formato "fff". Por exemplo, o código a seguir exibe uma cadeia de caracteres que contém o número de milissegundos em uma data e hora para o console.

DateTime date1 = new DateTime(2008, 1, 1, 0, 30, 45, 125);
Console.WriteLine("Milliseconds: {0:fff}",
                  date1);           // 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

Você também pode exibir o componente de milissegundos junto com os outros componentes de um valor de data e hora usando o especificador de formato padrão "o". Por exemplo:

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
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

No entanto, o especificador de formato "o" destina-se menos para exibição do que para arredondamento ou armazenamento de um DateTime valor. Você também pode exibir milissegundos junto com outros componentes de data e hora usando uma cadeia de caracteres de formato personalizado, como mostra o exemplo a seguir.

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
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

Aplica-se a