DateTime.Millisecond Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il componente di millisecondi della data rappresentata dall'istanza.
public:
property int Millisecond { int get(); };
public int Millisecond { get; }
member this.Millisecond : int
Public ReadOnly Property Millisecond As Integer
Valore della proprietà
Componente che indica i millisecondi, espresso mediante un valore compreso tra 0 e 999.
Esempio
Nell'esempio seguente viene illustrata la Millisecond proprietà .
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
Commenti
È possibile visualizzare la rappresentazione stringa della proprietà usando l'identificatore di Millisecond formato "fff". Ad esempio, il codice seguente visualizza una stringa contenente il numero di millisecondi in una data e un'ora nella console.
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
È anche possibile visualizzare il componente millisecondo insieme agli altri componenti di un valore di data e ora usando l'identificatore di formato standard "o". Esempio:
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
Tuttavia, l'identificatore di formato "o" è destinato a meno per la visualizzazione rispetto al round tripping o all'archiviazione di un DateTime valore. È anche possibile visualizzare millisecondi insieme ad altri componenti di data e ora usando una stringa di formato personalizzata, come illustrato nell'esempio seguente.
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