码迷,mamicode.com
首页 >  
搜索关键字:region    ( 2749个结果
for、foreach和MoveNext循环效率粗比较
今天没事对for循环、foreach循环、MoveNext循环,执行效率进行了对比;粗略测试代码如下:static void Main(string[] args) { #region 三种方式循环执行效率测试 List intList = ...
分类:其他好文   时间:2014-11-26 18:26:04    阅读次数:184
eclipse插件
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(正确地说是JASS 2)是魔兽3的程序语言,用于控制游戏和地图的进行,也是魔兽游戏和地图的基础。 地图编辑器中摆放的单位(Unit),区域(Region) ,触发(Trigger)……等,最终都会被翻译成JASS语言存在地图文件里,在游戏...
分类:其他好文   时间:2014-11-26 15:43:14    阅读次数:216
UVA - 699
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
【LeetCode】Surrounded Regions 解题报告
【题目】 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
c# DataGridView操作
1 #region 操作DataGridView 2 3 /// 4 /// 初始化DataGridView属性 5 /// 6 /// 要处理的DataGridView 7 ///...
分类:Windows程序   时间:2014-11-21 14:16:04    阅读次数:290
c#中设置像数量,价格,金额等的textbox的限制条件,用户只能输入数字或小数
1 #region 设置数量等textbox控件样式及限制条件(具体调用的方法就是重写或直接调用ShieldNumberTextBoxOtherKeys函数) 2 3 /// 4 /// 屏蔽数字textbox的其他字符串 5 //...
分类:Windows程序   时间:2014-11-21 14:12:48    阅读次数:194
序列化和反序列化
/// /// 序列化帮助类 /// public class SerializeHelp { #region XML序列化 /// /// XML序列化 /// /// /...
分类:其他好文   时间:2014-11-21 12:29:07    阅读次数:159
[.Net] DataTable添加列和行的三种方法
#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
C# 64位系统 注册表的读写
64位系统,读取时是要有区别的,写入时没有问题。这里的代码时通用的,已经内部判断当前系统的位数。 1 /// 2 /// 注册表 3 /// 4 public class RegistryKey64 5 { 6 #region ...
分类:Windows程序   时间:2014-11-20 11:53:33    阅读次数:417
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!