public static CoreOperations GetInstance() { if (_firstInstance == null) { lock (_lock) { if (_firstInstance == null) { _firstInstance = new CoreOperations(); } } } return(_firstInstance); }