Dashing.Console.TimedOperation.TimedOperation C# (CSharp) Метод

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

public TimedOperation ( string description ) : System
description string
Результат System
        public TimedOperation(string description) {
            Console.Write(description);
            this.Stopwatch = new Stopwatch();
            this.Stopwatch.Start();
        }