c#

位置:IT落伍者 >> c# >> 浏览文章

C#中using的三种使用方法


发布日期:2023年12月17日
 
C#中using的三种使用方法
引入命名空间

using System;

using SystemData;使用别名

using sql = SystemDataSqlClient;

namespace test

{

public class test

{

public test()

{

sqlSqlConnection = new SqlSqlConnection();

//

}

}

}利用 NET 的 GC 机制应用于实现了 IDisposable 接口的对象

using(SqlConnection cn = new SqlConnection())

{

cnOpen();

using (SqlCommand cmd = new SqlCommand( cn))

{

//

}

}

上一篇:ADO.NET Entity Framework 试水——并发

下一篇:C# 创建TXT文本日志,在尾行追加内容