随笔分类 -  c#基础知识

摘要:Content-Type: multipart/form-data; boundary acebdf13572468User-Agent: FiddlerContent-Length: 369Host:xxxxxx request body为以下内容 acebdf13572468Content-Di 阅读全文
posted @ 2016-10-10 19:40 东少 阅读(900) 评论(0) 推荐(0)
摘要:在vs2013的默认安装目录1、CS类修改方式在C:\ProgramFiles(x86)\MicrosoftVisualStudio12.0\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class下修改Class.cs类在全上方加上/*******... 阅读全文
posted @ 2015-04-18 16:31 东少 阅读(759) 评论(0) 推荐(0)
摘要:1 public string[] StringSplit(string strSource, string strSplit) 2 { 3 string[] strtmp = new string[1]; int index = strSource.IndexOf(strSplit, 0); 4 if (index < 0) { strtmp[0] = strSource; return strtmp; } 5 else 6 { 7 strtmp[... 阅读全文
posted @ 2013-05-29 21:49 东少 阅读(212) 评论(0) 推荐(0)