DateTime.Millisecond Property
.NET Framework 2.0
Gets the milliseconds component of the date represented by this instance.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
The following code example demonstrates the Millisecond property.
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.get_Year();
// Month gets 1 (January).
int month = moment.get_Month();
// Day gets 13.
int day = moment.get_Day();
// Hour gets 3.
int hour = moment.get_Hour();
// Minute gets 57.
int minute = moment.get_Minute();
// Second gets 32.
int second = moment.get_Second();
// Millisecond gets 11.
int millisecond = moment.get_Millisecond();
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: