码迷,mamicode.com
首页 >  
搜索关键字:threading    ( 3244个结果
job1
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using WindowsFormsApplication3.Jobs;using Win...
分类:其他好文   时间:2014-07-23 11:38:36    阅读次数:186
5.大话设计模式-代理模式
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace DesignModel{ public class ...
分类:其他好文   时间:2014-07-23 11:33:16    阅读次数:187
数组段
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespaceConsoleApplication2 { classProgram { staticvoidMain(string[]args) { int[]arri=newint[]{1,2,3,4,5}; ArraySegment<int>ass=newArraySeg..
分类:其他好文   时间:2014-07-23 00:17:38    阅读次数:165
ManualResetEvent的使用
1 using System; 2 using System.Threading; 3 4 public class Example 5 { 6 // mre is used to block and release threads manually. It is 7 ...
分类:其他好文   时间:2014-07-22 22:45:33    阅读次数:239
C# CsvFile 类
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace AnfleCrawler....
分类:其他好文   时间:2014-07-22 22:42:53    阅读次数:333
用自己设计的表(包括主键,外键约束)填充DataSet类
1.创建一个内存表,定义主键约束等2.声明基类数组并赋值,再把数组当做行添加到Rows中using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.T...
分类:其他好文   时间:2014-07-22 22:40:13    阅读次数:219
python 多线程
python 提供了几个用于多线程编程的模块,包括thread、threading、Queue等。thread、threading 模块允许程序创建和管理线程;thread模块提供了基本的线程和锁的支持, threading提供了更高级别,功能更强的线程管理的功能;Queue模块允许用户创建一个.....
分类:编程语言   时间:2014-07-22 22:38:32    阅读次数:209
ThreadPool的QueueUserWorkItem 方法 (WaitCallback)和QueueUserWorkItem 方法 (WaitCallback, Object)
注:要使用此方法都需要引入应用:using System.Threading;//引入应用参数意义:将要执行的方法排入队列以便执行,WaitCallback,即表示将要执行的方法;Object,包含方法所用数据的对象。如果将方法成功排入队列,则为 true;否则为 false。一、下面是Thread...
分类:其他好文   时间:2014-07-22 00:15:36    阅读次数:241
Job1
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using WindowsFormsApplication3.Jobs;using Win...
分类:其他好文   时间:2014-07-22 00:03:33    阅读次数:153
两种读取微信xml消息的方式比较
直接贴代码和结果。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml;using System....
分类:微信   时间:2014-07-22 00:01:37    阅读次数:403
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!