AcessoDados.Engine.CloseConnection C# (CSharp) 메소드

CloseConnection() 개인적인 메소드

private CloseConnection ( ) : void
리턴 void
        public void CloseConnection()
        {
            if (dbConnection != null)
                if (dbConnection.State != ConnectionState.Closed)
                    dbConnection.Close();
        }