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.
Afficher le fichier Open project: argentini/Halide

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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 méthode

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
Résultat string

H3StopWatch() public méthode

Initializes the H3StopWatch to 0.
public H3StopWatch ( ) : System
Résultat System

Reset() public méthode

Reset the Stopwatch to 0.
public Reset ( ) : void
Résultat void

Start() public méthode

Starts the Stopwatch.
public Start ( ) : void
Résultat void

Stop() public méthode

Stops the Stopwatch.
public Stop ( ) : void
Résultat void