本文介绍了2种关闭连接的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 在我的Finally块中,我使用了cn.close(其中cn是一个ADO.NET 连接对象,确切地说是SQLConnection)然后我遇到了 跟随一些微软代码。 如果不是cn什么都没有那么 CType(cn,IDisposable).Dispose() 结束如果 我不得不承认,我不知道这里发生了什么。有人会向我解释这个 代码行(中间的那个,而不是if语句LOL)吗? [希望我不会因此而受到抨击: - )] Eric In my Finally block, I was using cn.close (where cn is an ADO.NETconnection object, SQLConnection to be exact) and then I came across thefollowing in some microsoft code. If Not cn Is Nothing ThenCType(cn, IDisposable).Dispose()End If I have to admit, I''m not sure what happens here. Will someone explain thisline of code (the middle one, not the if statement LOL) to me please?[hopefully I won''t get flamed for this :-) ] Eric 推荐答案 这个 这篇关于2种关闭连接的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 21:03