using( 实例化对象 ){
对象使用的语句
}
使用Using语法,会自动调用Dispose()方法。--> 释放资源
写法如同:
类 对象 = new 类();
对象.方法
对象.Dispose();
猜你喜欢