熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C#中using的三種使用方法

2022-06-13   來源: .NET編程 
引入命名空間
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))
{
//
}
}
From:http://tw.wingwit.com/Article/program/net/201311/11291.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.