time (msvcrt)
Last changed: -95.72.97.205

.
Summary
The time function returns the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time, according to the system clock. The return value is stored in the location given by timer. This parameter may be NULL, in which case the return value is not stored.

VB Signature:

    <DllImport("msvcrt")> Shared Function _
    time(ByRef timer As Integer) As Integer
    End Function

C# Signature:

    [DllImport("msvcrt")]
    public static extern Int32 time(out Int32 timer);

User-Defined Types:

None.

Alternative Managed API:

VB:

    Math.Floor(Now.ToUniversalTime.Subtract(New Date(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds)

C#:

    (Int32)Math.Floor((DateTime.Now.ToUniversalTime() - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds)

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
time on MSDN