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

User-Defined Types:

None.

Alternative Managed API:

Math.Floor(Now.Subtract(New Date(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