码迷,mamicode.com
首页 >  
搜索关键字:threading    ( 3244个结果
C# get set方法
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
C# 索引器
使用索引器的目的是为了能够像数组一样访问类中的数组型的对象。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace...
分类:其他好文   时间:2014-05-10 05:43:44    阅读次数:218
C# 虚方法的重载 new 与 virtual
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
Python中进程无法结束的处理办法
1.方法一 http://hi.baidu.com/javalang/item/72fabf2359a30b464799625e也就是说当线程使用start方法运行起来后,只有当run方法运行结束,一个线程才会结束。import threadingfrom threading import Thr....
分类:编程语言   时间:2014-05-09 05:18:44    阅读次数:364
C#定时器
在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
WPF单线程定时器 简单实例
//窗体加载完毕 void MyMessageBox_Loaded(object sender, RoutedEventArgs e) { //启动定时期倒计时,多线程计时 //System.Threading....
分类:编程语言   时间:2014-05-09 03:27:00    阅读次数:366
C#:ZedGraph画图控件(待补充)
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
C#保证打开的程序是唯一的
static class Program { public static System.Threading.Mutex Run; /// /// 应用程序的主入口点。 /// ...
分类:其他好文   时间:2014-05-07 21:01:35    阅读次数:367
SynchronizationContext的研究之一(非WPF及Forms)
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
3244条   上一页 1 ... 321 322 323 324 325 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!