1. C# / Говнокод #14634

    +136

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    private AseConnection con;
    
    public void CloseConnection()
    {
        if (this.con != null && this.con.State == ConnectionState.Open)
        {
            CloseConnection(this.con);
        }
    }
    
    public void CloseConnection(AseConnection con)
    {
        if (con == null)
            return;
    
        if (con.State == ConnectionState.Closed)
            return;
    
        con.Close();
    }

    А кому ещё враппэровъ? У меня много ихъ!

    Запостил: wissenstein, 18 Февраля 2014

    Комментарии (4) RSS

    Добавить комментарий