Amib.Threading.Internal.STPInstancePerformanceCounters.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public void Close()
        {
            if (null != _pcs)
            {
                for (int i = 0; i < _pcs.Length; i++)
                {
                    if (null != _pcs[i])
                    {
                        _pcs[i].Close();
                    }
                }
                _pcs = null;
            }
        }