码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
关于反射的学习
前边看抽象工厂模式时,对反射有些不熟悉,这两天学习了一下,把成果记下来。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;nam...
分类:其他好文   时间:2014-07-16 21:11:15    阅读次数:173
泛型的静态成员
------------------------------------StaticDome.csusingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespaceConsoleApplication3 { publicclassStaticDome<T> { publicstaticintx; } }------------..
分类:其他好文   时间:2014-07-15 12:17:08    阅读次数:182
.Net基础加强02
猜拳游戏:玩家类:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 猜拳游戏{ public cla...
分类:Web程序   时间:2014-07-14 22:50:35    阅读次数:311
C# Hashtable中存入数组或类
示例代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;namespace...
分类:其他好文   时间:2014-07-12 13:34:26    阅读次数:330
Eclipse的安装
1.怎样用Eclipse?1.菜单(MenuBar)2.工具列(ToolBar)3.快速视图(FastView)4.PackageExplorer视图5.Editor视图6.快捷方式工具列(ShortcutToolbar)7.Outline视图8.Tasks视图和Console视图===== 常用视...
分类:系统相关   时间:2014-07-09 15:51:37    阅读次数:263
重写ToString与实现扩展方法
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespaceConsoleApplication2 { classProgram { staticvoidMain(string[]args) { Moneym=newMoney(); m.Amount=30.00m; Console.WriteLine(m.ToString());/..
分类:其他好文   时间:2014-07-09 08:48:12    阅读次数:176
构造函数初始化器
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespaceConsoleApplication2 { classProgram { staticvoidMain(string[]args) { catc=newcat("萌萌");//先执行cat(strings,inti)构造函数 Console.WriteLi..
分类:其他好文   时间:2014-07-09 08:05:19    阅读次数:184
UVa 10305 - Ordering Tasks 拓扑排序题解
Topological Sort题解。本题是简单的入门题目。 Topological Sort的思想很简单,就是按没有入度的点,先输出,然后删除这个点的出度。然后输出下一组没有入度的点。 如何实现也是很简单的: 这里使用邻接表,建图的时候反过来建图,建立一个入度邻接表。 然后使用一个vis数组,记录访问过的节点,也可以根据这个信息知道哪些是已经输出的点,这个时候这些点的入度可以不算为当前入...
分类:其他好文   时间:2014-07-08 12:46:41    阅读次数:282
c#值类型,引用练习,ref,out
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespaceConsoleApplication1 { classProgram { staticvoidMain(string[]args) { inti=10;//值类型 intj=10;//必须初始化 intk;//不需要初始化 int[]iarr={..
分类:其他好文   时间:2014-07-08 09:42:06    阅读次数:221
[Forward]Use the SharePoint My Tasks Web Part outside of My Sites
from http://yalla.itgroove.net/2014/04/use-sharepoint-tasks-web-part-outside-sites/Use the SharePoint My Tasks Web Part outside of My SitesWritten by ...
分类:Web程序   时间:2014-07-06 20:20:40    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!