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

📄 class1.cs

📁 这是c#高级编程的配套源码
💻 CS
字号:
using System;

namespace Wrox.ProCSharp.Assemblies.AppDomains
{
	class Class1
	{
		public Class1(int val1, int val2)
		{
			Console.WriteLine("Constructor with the values {0}, {1}" +
				" in domain {2} called", val1, val2,
				AppDomain.CurrentDomain.FriendlyName);
		}
		[STAThread]
		static void Main(string[] args)
		{
			Console.WriteLine("Main in domain {0} called",
				AppDomain.CurrentDomain.FriendlyName);
		}
	}
}

⌨️ 快捷键说明

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