C# Класс 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.
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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.

Описание методов

GetTime() публичный Метод

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
Результат string

H3StopWatch() публичный Метод

Initializes the H3StopWatch to 0.
public H3StopWatch ( ) : System
Результат System

Reset() публичный Метод

Reset the Stopwatch to 0.
public Reset ( ) : void
Результат void

Start() публичный Метод

Starts the Stopwatch.
public Start ( ) : void
Результат void

Stop() публичный Метод

Stops the Stopwatch.
public Stop ( ) : void
Результат void