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

📄 mytime.cs

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

namespace chapter3
{
	/// <summary>
	/// MyTime 的摘要说明。
	/// </summary>
	delegate void TimeDelegate(string a);
	public class MyTime
	{
		public static void HelloTime(string s)
		{
			Console.WriteLine("Hello {0}! The time is {1} now!",s,DateTime.Now);
		}
		public static void GoodbyeTieme(string s)
		{
			Console.WriteLine("Goodbye {0}! The time is {1} now!",s,DateTime.Now);
		}
		public void SayTime(string s)
		{
			Console.WriteLine("{0}! The time is {1} now!",s,DateTime.Now);
		}
		public MyTime()
		{
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}
	}
}

⌨️ 快捷键说明

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