Interface IStopwatch
Interface for stopwatchs.
Inherited Members
Namespace: Evergine.Common.System
Assembly: Evergine.Common.dll
Syntax
public interface IStopwatch : IDisposable
Properties
ElapsedMilliseconds
Gets the elapsed milliseconds.
Declaration
double ElapsedMilliseconds { get; }
Property Value
Type | Description |
---|---|
double |
Methods
Reset()
Resets this instance.
Declaration
void Reset()
Start()
Starts this instance.
Declaration
void Start()
Stop()
Stops this instance.
Declaration
void Stop()