Example #1
0
        internal static ProfilingTimer Create()
        {
            ProfilingTimer res = new ProfilingTimer();

            res._totalTime = new System.Diagnostics.Stopwatch();
            return(res);
        }
Example #2
0
        internal static ProfilingTimer StartNew()
        {
            ProfilingTimer res = new ProfilingTimer();

            res.StartTime();
            return(res);
        }