In this blog, generic collections will be talked about in details. In the past bacause of shortage of generic argument, less importance has been attached to the this module. Just now after
readin...
分类:
其他好文 时间:
2014-07-15 12:45:00
阅读次数:
253
------------------------------------StaticDome.csusingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceConsoleApplication3
{
publicclassStaticDome<T>
{
publicstaticintx;
}
}------------..
分类:
其他好文 时间:
2014-07-15 12:17:08
阅读次数:
182
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Data; 6 using System....
分类:
Windows程序 时间:
2014-07-15 08:14:47
阅读次数:
1401
猜拳游戏:玩家类: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
FPGA是可编程逻辑器件(PLD:Programmable Logic Device)的一种。PLD是上世纪70年代发展起来的一种新型器件,它的应用和发展不仅简化了电路设计,降低了开发成本,提高了系统可靠性,而且给数字系统的设计方法带来了革命性的变化。截止到现在,出现了多种工艺、不同原理的PLD,如下。
? PLA(Programmable Logic Array)可编程逻辑阵列
? PAL(Programmable Array Logic)可编程阵列逻辑
? GAL(Generic Array Logic...
分类:
其他好文 时间:
2014-07-14 20:23:02
阅读次数:
294
网上很多内容采集工具,今天就自己试着写一个,发现C#可以轻松的抓去网页的内容,进而通过正则来分离出自己感兴趣的数据。下面是抓去网页内容的代码:using System;using System.Collections.Generic;using System.Linq;using System......
分类:
Web程序 时间:
2014-07-14 20:02:19
阅读次数:
220
1、创建ASP.NET MVC4 Web应用程序,选择WebAPI模板2、添加silverlight项目3、新建一个数据模型类,代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Web;...
序列化就是为了简化复杂的数据结构的存储提出来的概念。序列化也就是把类的对象作为一个整体存入文件,反序列化则是相反过程#using System;#using System.IO;#using System.Collections.Generic;#using System.Runtime.Seria...
分类:
其他好文 时间:
2014-07-14 15:21:59
阅读次数:
173
System.Environment类允许我们通过不同的静态成员获得大量的有关运行.net应用程序的操作系统的细节。usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Collections;
namespace命令行参数
{
classProgram
{
staticintMain(stri..
分类:
其他好文 时间:
2014-07-14 12:37:28
阅读次数:
192
.NET中有三种注释:1.单行注释//2.多行注释/*开始*/结束3.文档注释在类或方法前面敲/////////文档注释///usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
namespace注释
{
classProgram
{
///<summary>
///这个方法是程序的入口这..
分类:
Web程序 时间:
2014-07-13 14:24:41
阅读次数:
183