using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;namespace GetSetTest{
class A { ...
分类:
其他好文 时间:
2014-05-10 07:39:24
阅读次数:
220
使用索引器的目的是为了能够像数组一样访问类中的数组型的对象。using
System;using System.Collections.Generic;using System.Linq;using
System.Text;using System.Threading.Tasks;namespace...
分类:
其他好文 时间:
2014-05-10 05:43:44
阅读次数:
218
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Threading.Tasks;namespace OverrideTest{ class A {...
分类:
其他好文 时间:
2014-05-09 13:43:24
阅读次数:
291
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
System.Threading;using System.Run...
分类:
其他好文 时间:
2014-05-09 07:46:58
阅读次数:
370
1.方法一
http://hi.baidu.com/javalang/item/72fabf2359a30b464799625e也就是说当线程使用start方法运行起来后,只有当run方法运行结束,一个线程才会结束。import
threadingfrom threading import Thr....
分类:
编程语言 时间:
2014-05-09 05:18:44
阅读次数:
364
在Framework中存在着4种定时器:其中分为两类,多线程计时器1:System.Threading.Timer2:System.Timers.Timer特殊目的的单线程计时器:1:System.Windows.Forms.Timer(Windows
Forms Timer)2:System.Wi...
分类:
其他好文 时间:
2014-05-09 05:00:21
阅读次数:
283
//窗体加载完毕 void MyMessageBox_Loaded(object sender,
RoutedEventArgs e) { //启动定时期倒计时,多线程计时 //System.Threading....
分类:
编程语言 时间:
2014-05-09 03:27:00
阅读次数:
366
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
ZedGraph;namespace TestZedGraphCo...
分类:
其他好文 时间:
2014-05-08 19:21:43
阅读次数:
530
static class Program { public static
System.Threading.Mutex Run; /// /// 应用程序的主入口点。 /// ...
分类:
其他好文 时间:
2014-05-07 21:01:35
阅读次数:
367
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 7 8
namespace Synchroniza...
分类:
其他好文 时间:
2014-05-07 02:18:18
阅读次数:
287