上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页
摘要: 一、SQL、Linq、lamda表达式 同一功能不同写法 SQL LINQ Lambda SELECT * FROM HumanResources.Employee from e in Employees select e Employees .Select (e => e) SELECT e.Lo 阅读全文
posted @ 2016-12-14 15:31 公众号python学习开发 阅读(672) 评论(0) 推荐(1) 编辑
摘要: 以前在开发中为了对List,String[].Array进行元素的查找一般都是这样做:List lists = new List();list.add("111");.....for(int i=0;i<list.length;i++){ if(list[i].equals("要查找的元素")) { 阅读全文
posted @ 2016-12-14 15:07 公众号python学习开发 阅读(3309) 评论(0) 推荐(0) 编辑
摘要: List在.NET里面使用得非常频繁,但有好多人不了解它各种小用法。我就一直记不大住... asp.net中List的简单用法,例如: 1 2 3 4 5 6 7 List<int> list = new List<int>(); //新增数据 list.Add(123); //修改数据 list[ 阅读全文
posted @ 2016-12-14 15:01 公众号python学习开发 阅读(9086) 评论(0) 推荐(1) 编辑
摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Globalization;using System.IO;using System.Linq;using System.Net;using 阅读全文
posted @ 2016-12-05 15:08 公众号python学习开发 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1.PlanWS5.Range("D5:E13").Copy 复制PlanWS5.Range("G5:H13").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False 选择性 阅读全文
posted @ 2016-11-18 14:41 公众号python学习开发 阅读(164) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.Linq; using System.Text; using System.Threading.Tasks; namespace bitmapdemo { cla... 阅读全文
posted @ 2016-11-16 08:20 公众号python学习开发 阅读(334) 评论(0) 推荐(0) 编辑
摘要: @echo offtitle EcCheck // 显示标题:loopif "%time%" GTR "23:00.00" (exit) else goto t //如果系统时间是23点退出程序。如果不是则继续进行t标签的程序:tcd C:\ECsystem\publishC:\ECsystem\p 阅读全文
posted @ 2016-10-21 12:01 公众号python学习开发 阅读(3414) 评论(0) 推荐(0) 编辑
摘要: byte[] bys=buffer; string[] AllDataList= Encoding.Default.GetString(bys).Split(Environment.NewLine.ToCharArray()); Encoding.Default.GetString(bys) 表示b 阅读全文
posted @ 2016-10-21 11:09 公众号python学习开发 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Globalization;using System.IO;using System.Linq;using System.Net;using 阅读全文
posted @ 2016-10-20 16:12 公众号python学习开发 阅读(175) 评论(0) 推荐(0) 编辑
摘要: delegate int GetCalculatedValueDelegate(int x, int y); //定义是个委托实际上就是抽象一类 参数列表形式和返回值相同的函数AddCalculator,SubCalculator这两个该函数的参数形式和返回值的类型就是。 static int Ad 阅读全文
posted @ 2016-10-14 11:30 公众号python学习开发 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页