自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(70)
  • 收藏
  • 关注

转载 关于dotNet的常用框架

http://www.360doc.com/content/15/1230/17/22743342_524230859.shtml

2016-08-17 16:09:04 140

转载 SQL Server 中WITH (NOLOCK)浅析

http://www.cnblogs.com/kerrycode/p/3946268.html

2016-08-01 10:36:53 130

转载 关于数组的一些算法

////去除数组里,重复的元素            ////方案1,用数组本身的特性,去重            //DateTime dt = DateTime.Now;            //Console.WriteLine(dt.ToLongTimeString());            //string[] s = new[] { "a", "b", "b",

2016-07-28 18:07:38 132

转载 Javascript

http://www.cnblogs.com/knowledgesea/archive/2012/05/18/2507141.html

2016-07-19 10:16:33 99

转载 C# HashSet集合类型使用介绍

http://blog.csdn.net/scalzdp/article/details/27346427

2016-05-12 19:45:46 3114

转载 HashSet和SortSet对比--c#学习笔记

http://www.cnblogs.com/xinyuxin912/archive/2014/01/15/3520593.html

2016-05-12 19:29:23 103

转载 Hashtable,hashset比较

http://www.cnblogs.com/akwwl/p/3680376.html

2016-05-12 13:06:36 103

原创 Hashtable中给定Key值,获得其Value的值

using System.Collections.Generic;string dbNameReturn = myHashTable.OfType().First(x => x.Key.ToString() == “Test”).Value.ToString();

2016-04-26 17:28:24 4305

转载 Tablespace for table '`pomelo`.`bag`' exists. Please DISCARD the tablespace before IMPORT.

Tablespace for table '`pomelo`.`bag`' exists. Please DISCARD the tablespace before IMPORT.

2016-04-12 10:25:47 288

转载 Windows服务定点一天只运行一次

http://blog.csdn.net/chenghaibing2008/article/details/10485999

2016-03-23 21:27:39 963

转载 2012 license key

http://xiaohuang.cc/post/215.html

2016-02-15 13:10:48 98

转载 关于Repeater控件,对于相同列,合并的问题

http://www.cnblogs.com/gdjlc/p/3491102.html

2016-02-05 16:29:59 173

原创 关于排序

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Sort{    public class Program    {       public class Nod

2016-01-04 17:34:02 82

原创 C# LINQ Self

using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace DemoLast{    class Program    {

2016-01-04 17:19:47 114

转载 C# LinQ

http://www.cnblogs.com/YuanSong/archive/2012/08/02/2619651.html

2016-01-04 16:59:25 120

转载 浏览器缓存机制

http://www.cnblogs.com/skynet/archive/2012/11/28/2792503.html

2015-12-04 14:28:36 78

原创 关于游标和触发器

select * from [dbo].[Table_1]select Table_1.name from [Table_1],insertedwhere [Table_1].name=inserted.name)=drop trigger Table_1_insertcreate trigger Table_1_inserton Table_1after insert

2015-12-01 17:23:17 80

原创 SVN setting with beyoned Compare

"C:\Program Files (x86)\Beyond Compare 3\BComp.exe" "%base" "%mine" /leftreadonly /lefttitle=BASE:%bname /righttitle=MINE:%yname:%mine"C:\Program Files (x86)\Beyond Compare 3\BComp.exe" "%base"

2015-11-25 15:15:38 127

转载 C#中标准Dispose模式的实现

http://kb.cnblogs.com/page/97871/

2015-11-24 16:28:19 214

转载 c# 中的Equals()和==有什么区别?

http://www.zybang.com/question/2263895f201ffec6c68b6c304ac4cd61.html

2015-11-24 16:15:53 80

原创 Code:关于LINQ

using System;using System.Collections.Generic;using System.Linq;//for the Enumerable Methodsnamespace LinQ{   internal class Program   {      private static void Main(string[]

2015-10-10 17:47:41 94

原创 Code:关于链表的基本操作

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Bianli{    //关于linked list 的增删改    public class Node    {

2015-10-10 15:42:48 65

原创 Code:二叉树遍历与查找

//using System;//using System.Collections.Generic;//using System.Linq;//using System.Text;//using System.Threading.Tasks;//namespace ConsoleApplication1//{//    public class Node//

2015-10-10 15:40:16 71

转载 算法

http://www.lupaworld.com/article-242544-1.html

2015-09-20 11:43:05 106

转载 SOAP Webservice和RESTful Webservice

http://blog.sina.com.cn/s/blog_493a845501012566.html

2015-08-26 14:22:26 115

转载 Web API 相关

http://www.tuicool.com/articles/ayMFJn

2015-08-26 13:26:09 74

转载 Node.js简介

http://blog.jobbole.com/53736/

2015-08-12 17:31:59 85

转载 NuGet学习笔记

http://kb.cnblogs.com/page/143190/

2015-08-10 15:33:31 101

转载 页面生命周期

http://www.jb51.net/article/31585.htm

2015-06-28 15:15:15 66

原创 Code:List中根据某个字段找出重复项,取某条特定的记录,并和另外的重复项做求和,并删除另一条记录

using System;using System.Collections.Generic;using System.Linq;namespace LinqFordistinct{   public class Plants   {      public int Age;      public string name;      public strin

2015-02-28 16:40:43 535

原创 XML读写操作

using System;using System.Collections.Generic;using System.Data;using System.Data.OleDb;using System.IO;using System.Linq;using System.Text;using System.Xml;using System.Xml.Linq;//关

2014-09-26 10:18:00 112

转载 操作XML相关的例子

http://blog.sina.com.cn/s/blog_3f4dc73b0100edev.html

2014-09-24 18:03:02 66

转载 关于深拷贝和浅拷贝

http://www.cnblogs.com/nliao/archive/2012/11/18/2776114.html

2014-08-21 14:57:22 57

转载 Csharp关于排序

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace SortMethod{   internal class Program   {      private static

2014-08-20 16:26:28 906

转载 序列号

http://hi.baidu.com/wowodo/item/ec17b6fa2e8ea25cc8f33706

2014-06-21 19:53:23 74

转载 Attempted to read or write protected memory. This is often an indication that other memory is corrup

使用命令: netsh winsock reset  Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

2014-06-05 16:21:22 233

转载 .NET项目持续集成实践 - Jenkins

http://www.cnblogs.com/lovvver/archive/2012/04/04/2429531.html

2014-05-23 16:18:33 58

using System;using System.Collections.Generic;using System.Linq;using System.Reflection;namespace SortExam{   class Program   {      //一个条件排序情况      //list.OrderBy(item => tem.State)

2014-04-18 15:55:59 48

转载 "This is not valid location for a breakpoint" solution

http://connect.microsoft.com/VisualStudio/feedback/details/523817/this-is-not-a-valid-location-for-a-breakpoint-in-aspx-page

2013-08-16 18:22:27 341

转载 使用C#格式化字符串(转自博客园)

http://blog.csdn.net/sendreams/article/details/5508676

2013-04-03 16:56:07 54

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除