예제 #1
0
        public static double Pop()
        {
            if (!Enabled)
            {
                return(-1);
            }
            if (Filter != null && Filter != Thread.CurrentThread)
            {
                return(-1);
            }

            if (OnPop != null)
            {
                OnPop();
            }

            return(_profiler.Pop());
        }