作业帮 > 综合 > 作业

C# using啥意思.

来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/09/22 15:28:55
C# using啥意思.
public static void Main(String[] args)
{
using (StreamWriter w = File.AppendText("log.txt"))
{
Log ("Test1",w);
Log ("Test2",w);
// Close the writer and underlying file.
w.Close();
}
// Open and read the file.
using (StreamReader r = File.OpenText("log.txt"))
{
DumpLog (r);
}
}
这里的using啥意思?我只知道using system写在类最上方那种的~
C# using啥意思.
你注意到using的圆括号和花括号了嘛?
意思是在圆括号里面的实例,只能在花括号中存活..
出了花括号.GC垃圾回收机制将自动回收这个实例.
在类最上面的using是指导入命名空间.