06 2012 档案
摘要:namespace Microshaoft{ using System; using System.Linq; using System.Threading.Tasks; using System.Threading; using System.Collections.Generic; using System.Collections.Concurrent; class Program { static void Main(string[] args) { var list = new List<...
阅读全文
摘要:namespace ConsoleApplication{ using System; public class Class { static void Main(string[] args) { Console.WriteLine("Hello World"); Console.WriteLine(Environment.Version.ToString()); } }}namespace Microshaoft{ using System; using System.R...
阅读全文
摘要:namespace Microshaoft{ using System; using System.Threading.Tasks; using System.Web; public class HttpTaskAsyncHandler : IHttpAsyncHandler { public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) {...
阅读全文
摘要:namespace Microshaoft{ using System; using System.Timers; public class EasyTimer { private Timer _timer; public void Start() { if (_timer != null) { _timer.Start(); } } private int _intervalSeconds; ...
阅读全文