摘要:
var provinceArray = new Array("北京市","天津市","上海市","重庆市","河北省","山西省","辽宁省","吉林省","黑龙江省","江苏省","浙江省","安徽省","福建省","江西省","山东省","河南省","湖北省&quo 阅读全文
摘要:
static void Main(string[] args) { int j; int m = 9; for (int i = 1; i 0 && j != 1) Console.Write("+"); Console.Write(j); } Console.ReadLine(); } public static int sum(int... 阅读全文
摘要:
在写按时间段查询的sql语句的时候 一般我们会这么写查询条件: where date>='2010-01-01' and date<='2010-10-1'。 但是在实执行Sql时些语句会转换成这样: where date>='2010-01-01 0:00:00' and date<='2010- 阅读全文
摘要:
移位运算(shifting operation)是C#中一种特殊的运算,其原理是根据数值存储在计算机内存中以二进制的标准,进行前移或者后移若干位的算法。根据题目来看,无符号位的数字移动“左”、“右”有以下规律:1)左移:将每个二进制的数字往左边移动若干位(若干位:符号“<<”后面的数字,不足以0补充 阅读全文
摘要:
void getData() { //init sqlconnection #region //SqlConnectionStringBuilder connbuilder = new SqlConnectionStringBuilder(); //connbuilder.DataSource = 阅读全文
摘要:
代表四种检出深度: 1、Fully recursive--全递归:检出完整的目录树,包含所有的文件或子目录。 2、Immediate children,including folders--直接子节点,包含文件夹:检出目录,包含其中的文件或子目录,但是不递归展开子目录。 3、Only file ch 阅读全文
摘要:
SpVoice.Speak的方法。 定义 分子 讲定的文本字符串同步(覆盖与SVSFlagsAsync), 不清除挂起说话请求(覆盖与SVSFPurgeBeforeSpeak), 为了解析XML的文本,如果第一个字符是左尖括号(覆盖与SVSFIsXML或SVSFIsNotXML), 不坚持全球XML 阅读全文
摘要:
user32.dll中的所有函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace 阅读全文
摘要:
https://msdn.microsoft.com/zh-cn/library/windows/apps/xaml/dn632431.aspx https://msdn.microsoft.com/zh-cn/library/ms788723.aspx https://msdn.microsoft 阅读全文
摘要:
JavaScript 获取当前时间戳: 第一种方法: var timestamp = Date.parse(new Date()); 结果:1280977330000 第二种方法: var timestamp = (new Date()).valueOf(); 结果:1280977330748 第三 阅读全文