C#-using语句

using语句定义:

提供可确保正确使用 IDisposable 对象的方便语法。

eg:

string manyLines=@"This is line one
This is line two
Here is line three
The penultimate line is line four
This is the final, fifth line.";

using (var reader = new StringReader(manyLines))
{
    string? item;
    do {
        item = reader.ReadLine();
        Console.WriteLine(item);
    } while(item != null);
}

C#-using语句

上一篇:C#一个类访问另一个类的变量和方法


下一篇:《逆向工程核心原理》——通过调试方式hook Api