摘要: 摘自《大话设计模式》一书。程序入口: 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Reflection; 5 using System.Configuration; 6 7 namespace 抽象工厂模式 8 { 9 class Program10 {11 static void Main(string[] args)12 {13 User user = new User();14 ... 阅读全文
posted @ 2014-02-21 12:50 太一吾鱼水 阅读(239) 评论(0) 推荐(0) 编辑