using 引入命名空间和外部资源
using 语句提供的对象必须实现 IDisposable 接口 。
比如在using 语句中创建一个实例,确保退出 using 语句时在对象上调用 Dispose.给出杨中科老师在ADO.NET里讲解的一个实例:(部分代码,希望帮助你理解)
//清空旧的数据
using (SqlConnection Conn = new SqlConnection(Constr))
{
Conn.Open();
using (SqlCommand myComm = Conn.CreateCommand())
{
myComm.CommandText = "delete from T_Phone";
myComm.ExecuteNonQuery();
}
} |