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

📄 class1.cs

📁 C#的实例程序
💻 CS
字号:
using System;

namespace 实例77
{
	/// <summary>
	/// Class1 的摘要说明。
	/// </summary>
	public class Sample
	{
		private System.Windows.Forms.ListBox listBox1;

		public Sample(System.Windows.Forms.ListBox a)
		{
			this.listBox1 = a;
		}

		public void work()
		{
			listBox1.Items.Add("Sample的work线程已运行0");
		}
	}

	class Class1
	{
		/// <summary>
		/// 应用程序的主入口点。
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
			//
			// TODO: 在此处添加代码以启动应用程序
			//
		}
	}
}

⌨️ 快捷键说明

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