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

📄 processtime.cs

📁 画图的作用 以及其他的类似图型转换的
💻 CS
字号:
using System;

namespace chapter3
{
	/// <summary>
	/// ProcessTime 的摘要说明。
	/// </summary>
	public delegate void TimeEventHandler(string s);
	public class MyTime1
	{
		public event TimeEventHandler Timer;
		
		public void OnTimer(string s)
		{
			if(null !=Timer) Timer(s);
		}
	}

	public class ProcessTime
	{
		public void GenerateTime(string s)
		{
			Console.WriteLine("Hello {0}!The time is {1} now ",s,DateTime.Now);
		}
	

		public ProcessTime()
		{
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}
	}
}

⌨️ 快捷键说明

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