C# Class Argentini.Halide.H3StopWatch

Accurate, Simple, and Easy to use Stopwatch Class. This class can be used to track process execution time in seconds and milliseconds.
Datei anzeigen Open project: argentini/Halide

Private Properties

Property Type Description

Public Methods

Method Description
GetTime ( ) : string

Returns a string containing the elasped time since the Start of the H3StopWatch.

(If Called after the Stop Method) Returns a string containing the elasped time between the Start of the H3StopWatch and the Stop of the H3StopWatch

H3StopWatch ( ) : System

Initializes the H3StopWatch to 0.

Reset ( ) : void

Reset the Stopwatch to 0.

Start ( ) : void

Starts the Stopwatch.

Stop ( ) : void

Stops the Stopwatch.

Method Details

GetTime() public method

Returns a string containing the elasped time since the Start of the H3StopWatch.

(If Called after the Stop Method) Returns a string containing the elasped time between the Start of the H3StopWatch and the Stop of the H3StopWatch

public GetTime ( ) : string
return string

H3StopWatch() public method

Initializes the H3StopWatch to 0.
public H3StopWatch ( ) : System
return System

Reset() public method

Reset the Stopwatch to 0.
public Reset ( ) : void
return void

Start() public method

Starts the Stopwatch.
public Start ( ) : void
return void

Stop() public method

Stops the Stopwatch.
public Stop ( ) : void
return void