摘要: namespace Microshaoft{ using System; using System.Timers; public class EasyTimer { private Timer _timer; public void Start() { if (_timer != null) { _timer.Start(); } } private int _intervalSeconds; ... 阅读全文
posted @ 2012-06-16 23:05 于斯人也 阅读(499) 评论(0) 推荐(0) 编辑