PowerArgs.Cli.TimeProfiler.TimeProfiler C# (CSharp) Method

TimeProfiler() public method

public TimeProfiler ( string key ) : System
key string
return System
        public TimeProfiler(string key)
        {
            sw = new Stopwatch();
            this.key = key;
            sw.Start();
        }