摘要: using System;using System.Threading;namespace threading{ public class Alpha { public void Beta() { while (true) { Console.WriteLine("Alpha.Beta is running in its own thread."); } } } public class Simple { publ... 阅读全文
posted @ 2013-03-27 23:34 凌晨一点 阅读(447) 评论(0) 推荐(0) 编辑