c# using作用

(1)引入命名空间,在引入命名空间的当前代码页写程序代码时,可以免除长长的命名空间。 
(2)在程序代码过中,使用using,可以在using结束时,回收所有using段内的内存。
            try {
                using (StreamReader sr = new StreamReader("TestFile.txt")) {
                    string line;
                    while ((line = sr.ReadLine()) != null) {
                        Console.WriteLine(line);
                    }
                }
            }
            catch (Exception e){
                Console.WriteLine(e.Message);
            }

  

 
原文地址:https://www.cnblogs.com/xiongqiangcs/p/3101272.html