摘要: 1. 代码结果如下图所示:2. TblPersonBll.cs中的代码:public class TblPersonBll{ public bool IncAgeByAutoId(int autoId) { TblPersonDal dal=newTblPersonDal();... 阅读全文
posted @ 2015-08-11 20:25 Bronc_Li 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 1. 架构: ·架构一般是针对整个系统的,并非针对某个单独的问题(单独问题可以用模式等来解决) ·针对整个系统的"一张蓝图",对系统的抽象。架构与具体的语言品台无关。 2.模式: ·软件开发中遇到的一些特定的问题,前任总结出来特定的经验、解决方法。 ·Gof 23中设计模式 ·MVC、mvp等模式 3. 框架: ·架构设计、模式应用的经验积累的具体代... 阅读全文
posted @ 2015-08-11 20:11 Bronc_Li 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1. 【案例一】如下代码: class Program{ private static int index= 0; static void Main(string[] args) { M1(); Console.ReadLine(); } private... 阅读全文
posted @ 2015-08-11 14:00 Bronc_Li 阅读(185) 评论(0) 推荐(0) 编辑