C#
文章平均质量分 78
solief
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# 实现 倒计时 (一)
C# 的定时器的实现方法有 3 种: (1)使用 System.Windows.Forms.Timer (2)使用 System.Threading.Timer (3)使用 System.Timers.Timer 其中: System.Windows.Forms.Timer 只能在 WinForm 中使用,通过Windows消息机制实现的,类似于 VB 或 Delphi 中的 Time原创 2014-09-13 16:32:12 · 10993 阅读 · 0 评论 -
控制台闹钟(一)
代码如下: //Program.cs using System; using System.Text.RegularExpressions; namespace CK { class Program { static void Main(string[] args) { SetClock(); /*原创 2014-09-16 19:21:25 · 753 阅读 · 0 评论
分享