⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 8.4.7example3.cs

📁 深入浅出C#,学习C#比较好的用例,能够很快掌握C#.
💻 CS
字号:
using System;
class Student
{
	public Student()
	{
		Console.WriteLine("Constructing a student......");
	}
	~Student()
	{
		Console.WriteLine("Destructing a student......");
	}
	public static void Main()
	{
		Student student=new Student();
		student=null;
		GC.Collect();//触发垃圾收集器
		GC.WaitForPendingFinalizers();//推迟当前线程
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -