public static AppUnderTest CreateInstance() { if(_instance == null) { lock(lockHelper) { if(_instance == null) _instance = new AppUnderTest(); } } return _instance; }
public static AppUnderTest CreateInstance() { if (_instance == null) { lock (lockHelper) { if (_instance == null) { _instance = new AppUnderTest(); } } } return(_instance); }