上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace La... 阅读全文
posted @ 2015-11-21 22:45 t800 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 2. 变量在声明时候,必须被初始化,因为编译器要根据变量的赋值来推断类型,如果未被初始化,编译器也就无法完成推断了。using System;using System.Collections.Generic;using System.Linq;using System.Text;using Syst... 阅读全文
posted @ 2015-11-21 17:13 t800 阅读(106) 评论(0) 推荐(0) 编辑
摘要: C#3.0特性---自动属性---构造函数需要显示的调用无参数的构造函数在结构体中使用自动属性时候,需要注意,所有构造函数都需要显示的调用无参数的构造函数 this() ,否则,会出现编译错误;因为只有这样,编译器才能知道所有字段都已经被赋值了;然而,类却不需要显示的调用无参数的构造函数,这主要由编... 阅读全文
posted @ 2015-11-21 16:33 t800 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using OtherNamespce; ... 阅读全文
posted @ 2015-11-21 15:32 t800 阅读(114) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using OtherNamespce; namespace CurrentNamespace { class Program { ... 阅读全文
posted @ 2015-11-21 15:29 t800 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 关于HttpContext.Current.Items http://www.cnblogs.com/Last Redemption/archive/2011/07/20/2111626.html 阅读全文
posted @ 2015-10-28 11:43 t800 阅读(392) 评论(0) 推荐(0) 编辑
摘要: #这是我的博客园文章。我申请将我所有的博文转移到CSDN博客[http://write.blog.csdn.net/postlist](http://write.blog.csdn.net/postlist)中,请允许! 阅读全文
posted @ 2015-06-28 23:12 t800 阅读(71) 评论(0) 推荐(0) 编辑
摘要: # 使用jQuery对Ajax的封装 **(主要是更安全,更方便)**- jQuery封装简化了Ajax,有$.get、$.post 等不同的效果的方法。- 缺点:(看不到获得失败的消息);## 这里推荐使用$.Ajax( ) ##### 主要是这个可以看到请求失败的消息。 ### $.aj... 阅读全文
posted @ 2015-06-28 22:15 t800 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: 匿名类1.第一步:定义一个类,类中有三个属性Id。Name.Height 属性类型根据“=”右边的值来推断2.第二步:创建这个类的对象,然后,用变量p1去指向它3.var表示根据右边的类型去推断var的类型using System;using System.Collections.Generic;u... 阅读全文
posted @ 2015-06-28 18:32 t800 阅读(420) 评论(0) 推荐(0) 编辑
摘要: https://www.zybuluo.com/mdeditor#116357-full-reader 阅读全文
posted @ 2015-06-28 15:52 t800 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页