码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
C#操作动态语言----Python
ususingSystem; usingSystem.Collections.Generic; usingSystem.ComponentModel; usingSystem.Data; usingSystem.Drawing; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Windows.Forms; usingMicrosoft.Scripting.Hosting; usingIronPython...
分类:编程语言   时间:2014-09-25 04:31:49    阅读次数:377
UVa 10305 (拓扑排序) Ordering Tasks
题意:经典的拓扑排序。有n个任务,然后某些任务必须安排在某些任务前面完成,输出一种满足要求的序列。分析:拓扑排序用离散里面的话来说就是将偏序关系拓展为全序关系。我们将“小于”这种关系看做一条有向边,如果得到的图是有向无环图DAG(Directed Acyclic Graph),则是存在拓扑排序的,如...
分类:其他好文   时间:2014-09-24 19:34:57    阅读次数:210
dynamic类型----4.0新特性
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Dynamic; namespaceConsoleApplication4 { classProgram { staticvoidMain(string[]args) { //实例化一个动态对象 dynamicdynamicObj=newExpand..
分类:其他好文   时间:2014-09-23 03:01:44    阅读次数:180
LINQ 表达式树
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Linq.Expressions; namespaceConsoleApplication3 { classProgram { staticvoidMain(string[]args) { //重要的类*****************************..
分类:其他好文   时间:2014-09-21 21:24:41    阅读次数:266
C#对文件进行MD5值检测
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 15:17:10    阅读次数:196
C#对WIindows服务进行操作
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 14:42:10    阅读次数:274
C#设置某程序开机自启动[修改注册表方式]
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using Microsoft...
分类:其他好文   时间:2014-09-21 13:54:20    阅读次数:252
并行Linq
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Collections.Concurrent; usingSystem.Threading; usingSystem.Diagnostics; namespaceConsoleApplication5 { classProgram { staticvoidMain(..
分类:其他好文   时间:2014-09-19 02:22:35    阅读次数:242
Android学习笔记之进程(Processes)和任务(tasks)
进程(Processes)和任务(tasks)所有的对象都需要内存和一个虚拟机来存活。一个process就是OS为了你的应用程序存活而开辟的空间,它也是用来让你的应用程序运行起来的必要条件。进程可能拥有资源文件,这些资源文件都由OS像管理内存一样来管理。也可能拥有网络socket或者可以打开的文件。...
分类:移动开发   时间:2014-09-18 23:39:34    阅读次数:238
Linq--标准的查询操作符
===========================================Racer.csusingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Collections; namespaceConsoleApplication4 { [Serializable] publicclassRacer:ICompa..
分类:其他好文   时间:2014-09-18 03:11:23    阅读次数:414
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!