编程工具 SublimeText3(3114)中文优化绿色版 本版特点 * 基于SublimeText3官方版进行修改汉化 * 软件已默认注册且已去除自动检测升级提示 * 调整字体大小为 11px 以适合大众使用习惯 * 深度整合GBK编码已能够完美支持GBK文... 08月26日 阅读 3,512 发表评论 阅读全文
SQL SQL 语句进行 like in 参数化 sql 语句进行 like in 参数化,按照正常的方式是无法实现的 我们一般的思维是: Like 参数: string strSql = "select * from Person.Address ... 01月14日 阅读 4,831 发表评论 阅读全文
C# C# 多播委托 using System; using System.Collections.Generic; using System.Li... 01月12日 阅读 3,548 发表评论 阅读全文
C# C# 匿名方法 lambda表达式 泛型委托 using System; using System.Collections.Generic; using System.Li... 01月12日 阅读 4,836 发表评论 阅读全文
C# C# 单例模式 using System; using System.Collections.Generic; using System.Li... 01月12日 阅读 3,709 发表评论 阅读全文
C# C# 编写代码的命名规则 Pascal 规则 每个单词开头的字母大写(如 TestCounter). Camel 规则 除了第一个单词外的其他单词的开头字母大写. 如. testCounter. Upper 规则... 01月10日 阅读 2,875 发表评论 阅读全文
C# C# 取自身版本 Ping检测网络 读取网络XML 自动更新 范例 private bool CheckUpdateServerState(string host) { ... 01月06日 阅读 3,698 发表评论 阅读全文
C# C# If Else, IF ElseIf Else语句 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 3,539 发表评论 阅读全文
C# C# Return return语句就是用于指定函数返回的值。return语句只能出现在函数体内,出现在代码中的其他任何地方都会造成语法错误! 当执行return语句时,即使函数主体中还有其他语句,函数执行也会停止! u... 12月15日 阅读 2,907 发表评论 阅读全文
C# C# 枚举,枚举和int以及string类型之间的转换 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 6,418 2 阅读全文