摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication13{ class Program { static void Main(string[] args) { Test t = new Test("Age",16); t.Run(); t.SetT1Value = "Height"; t.SetT2Va... 阅读全文
posted @ 2013-11-20 22:52 cnxy 阅读(494) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleApplication11{ class Program { public delegate void TestDeleagte(string temp); static void Main(string[] args) { Thread t = new Thread(() =>... 阅读全文
posted @ 2013-11-20 20:55 cnxy 阅读(356) 评论(0) 推荐(0) 编辑
著作版权归 cnxy.me 所有