seconds

Returns the given seconds in milliseconds

@property @nogc pure nothrow
uint
seconds
(
uint n
)

Examples

int n = 5.seconds; // n is 5000 because 5 seconds are 5000 milliseconds
StopWatch sw;
sw.wait(5.seconds);

Meta