NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DateTime.Second

Retrieves the second's part of this instance.

[Visual Basic]
Public ReadOnly Property Second As Integer
[C#]
public int Second {get;}
[C++]
public: __property int get_Second();
[JScript]
public function get Second() : int;

Property Value

Read-only.

Remarks

The Second property returns a value that is an 32-bit signed integer (int) between 0 and 59 that represents the number of the seconds of this instance of DateTime.

It is calculated by dividing the ticks by the ticks per second and the quotient divided by seven ((ticks/ TicksPerSecond)/ 60) and returns an 32-bit signed integer value.

See Also

DateTime Structure | DateTime Members | System Namespace | Ticks | TicksPerSecond | Int32