今天没事对for循环、foreach循环、MoveNext循环,执行效率进行了对比;粗略测试代码如下:static void Main(string[] args) { #region 三种方式循环执行效率测试 List intList = ...
分类:
其他好文 时间:
2014-11-26 18:26:04
阅读次数:
184
1. file explorer2. easyshell3. Regex Util 一个测试和编辑 java 正则表达式(java.util.regex)的插件。4. 代码块折叠 com.cb.eclipse.folding 用过 Visual Studio 的朋友都知道 #region ... ....
分类:
系统相关 时间:
2014-11-26 16:19:47
阅读次数:
218
Jass是什么? 先阐释一下什么是jass吧,百度:JASS(正确地说是JASS 2)是魔兽3的程序语言,用于控制游戏和地图的进行,也是魔兽游戏和地图的基础。 地图编辑器中摆放的单位(Unit),区域(Region) ,触发(Trigger)……等,最终都会被翻译成JASS语言存在地图文件里,在游戏...
分类:
其他好文 时间:
2014-11-26 15:43:14
阅读次数:
216
The Falling LeavesEach year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by t...
分类:
其他好文 时间:
2014-11-26 12:50:35
阅读次数:
198
【题目】
Given a 2D board containing 'X' and 'O',
capture all regions surrounded by 'X'.
A region is captured by flipping all 'O's into 'X's
in that surrounded region.
For example,
X X X...
分类:
其他好文 时间:
2014-11-21 14:24:22
阅读次数:
167
1 #region 操作DataGridView 2 3 /// 4 /// 初始化DataGridView属性 5 /// 6 /// 要处理的DataGridView 7 ///...
1 #region 设置数量等textbox控件样式及限制条件(具体调用的方法就是重写或直接调用ShieldNumberTextBoxOtherKeys函数) 2 3 /// 4 /// 屏蔽数字textbox的其他字符串 5 //...
/// /// 序列化帮助类 /// public class SerializeHelp { #region XML序列化 /// /// XML序列化 /// /// /...
分类:
其他好文 时间:
2014-11-21 12:29:07
阅读次数:
159
#region 方法一:
DataTable tblDatas =new DataTable("Datas");
DataColumn dc =null;
dc = tblDatas.Columns.Add("ID", Type.GetType("System.Int32"));
dc.AutoIn...
分类:
Web程序 时间:
2014-11-20 23:24:42
阅读次数:
227
64位系统,读取时是要有区别的,写入时没有问题。这里的代码时通用的,已经内部判断当前系统的位数。 1 /// 2 /// 注册表 3 /// 4 public class RegistryKey64 5 { 6 #region ...