上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页
摘要: 1.url的确定 string ftpServerIP = "29.184.249.98"; string path=new Uri("ftp://"+ftpServerIP+"/").ToString(); 2. 创建连接 FtpWebRequest reqFTP; public void Con 阅读全文
posted @ 2016-12-22 14:09 公众号python学习开发 阅读(178) 评论(0) 推荐(0) 编辑
摘要: デリゲート(C# 1.0) そもそもデリゲート(delegate-直訳すると委任・委託・委譲という意味)とはその名前の通り、処理の委譲を支援するための仕組みとなります。 委譲とは大辞林によると「権限などを他に任せて譲ること」となっています。たとえば、複数店舗を展開しているスーパーがあったとします。本 阅读全文
posted @ 2016-12-15 14:15 公众号python学习开发 阅读(661) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Diagnostics; using System.Net; using System.Text; using System.Web; using System.Linq; using System.IO; using System.Collections.Generic; namespace AdUrlConvert { class Pro... 阅读全文
posted @ 2016-12-15 11:50 公众号python学习开发 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 一、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学习开发 阅读(675) 评论(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学习开发 阅读(3322) 评论(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学习开发 阅读(9104) 评论(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学习开发 阅读(278) 评论(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学习开发 阅读(168) 评论(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学习开发 阅读(336) 评论(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学习开发 阅读(3430) 评论(0) 推荐(0) 编辑
上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页