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);
            }

  

 
posted @ 2013-05-27 11:43  OpenSoucre  阅读(330)  评论(0编辑  收藏  举报