/// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public static CaptchaBreakerFactory GetInstance()
		{
			if (_instance == null)
			{
				lock(_locker)
				{
					if (_instance == null)
					{
                        _instance = new CaptchaBreakerFactory();
					}
				}
			}
			return _instance;
		}
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 public static CaptchaBreakerFactory GetInstance()
 {
     if (_instance == null)
     {
         lock (_locker)
         {
             if (_instance == null)
             {
                 _instance = new CaptchaBreakerFactory();
             }
         }
     }
     return(_instance);
 }