public static DetectionDataCache GetDataCache() { if (_dataCache == null) { _dataCache = new DetectionDataCache(); } return(_dataCache); }
public static void ReleaseDataCache() { _dataCache?.Dispose(); _dataCache = null; }