Automobile.Registrar.SQLiteClient.Dispose C# (CSharp) Метод

Dispose() публичный Метод

Closes the shared connection if one exists
public Dispose ( ) : void
Результат void
        public void Dispose()
        {
            if(_sharedDb != null)
            {
                _sharedDb.Close();
            }
        }