摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
posted @ 2015-08-28 17:08 linbin524 阅读(315) 评论(0) 推荐(0) 编辑
摘要: asp.net,C#,break,continue,goto 阅读全文
posted @ 2014-11-05 17:36 linbin524 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 从上到大学到现在工作,已经有六年多了,发现学习编程到以开发为工作也是一个挺长的过程的。 大学中,从c语言到java、C#到其他各种语言的学习,还有其他知识的学习如:数据库(oracle、sql Server)、网站开发......最终还是C#让我有想学习下来并深入学习的。可能是因为入门容易,做的一些 阅读全文
posted @ 2014-10-17 16:02 linbin524 阅读(4473) 评论(34) 推荐(10) 编辑
摘要: .net学习路线感想 阅读全文
posted @ 2014-10-17 15:58 linbin524 阅读(210) 评论(0) 推荐(0) 编辑
摘要: MVC+EF, LINQ,MVC+EF 的增删改查操作 阅读全文
posted @ 2014-07-10 17:17 linbin524 阅读(989) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-18 22:56 linbin524 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 虚方法 阅读全文
posted @ 2014-02-18 19:25 linbin524 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; using System.Text; 4 5 namespace ConsoleApplication1 { 6 7 class Program { 8 9 static void Main(string[] args) {10 11 List list = new List(); 12 list.Add(new Customer()); 13 list.Add(new VIPACustomer()); 14 list.Add(n... 阅读全文
posted @ 2014-02-18 19:22 linbin524 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 委托 阅读全文
posted @ 2014-02-18 19:18 linbin524 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 1、接口: 接口与抽象类一样,也是表示某种规则,一旦使用了该规则,就必须实现相关的方法。对于C#语言而言,由于只能继承自一个父类,因此若有多个规则需要实现,则使用接口是个比较好的做法。 2、接口的定义interface 接口名{ 方法声明;} 3、不同接口中若有多个相同名称的方法,则需要显式指定接口名,例如: 4、接口的使用使用接口也可以实现多态。代码如下:class Program{ static void Main(string[] args) { //提供三个类,完成工资的计算 List li... 阅读全文
posted @ 2014-02-18 19:14 linbin524 阅读(774) 评论(0) 推荐(0) 编辑