コード例 #1
0
ファイル: ProxyProvider.cs プロジェクト: h4x00r/extentions
        public static ProxyProvider GetInstance()
        {
            if (_instance == null)
            {
                lock (_locker)
                {
                    if (_instance == null)
                        _instance = new ProxyProvider();
                }
            }

            return _instance;
        }