当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

摘要: 控制反转(Inversion of Control,缩写为IoC),是面向对象编程中的一种设计原则,可以用来减低计算机代码之间的耦合度。其中最常见的方式叫做依赖注入(Dependency Injection,简称DI),还有一种方式叫“依赖查找”(Dependency Lookup)。通过控制反转, 阅读全文
posted @ 2019-07-31 13:54 hofmann 阅读(314) 评论(0) 推荐(0)
摘要: using System; using System.ServiceModel; namespace com._80community.unittest.Demo { public delegate void ActionDelegate(); /* * [ServiceContract]服务协定定 阅读全文
posted @ 2019-07-31 11:30 hofmann 阅读(345) 评论(0) 推荐(0)
摘要: 帮助类 using System; using System.Text; using System.IO; using System.Security.Cryptography; namespace Com.AppCode.RSA { public class Client { #region 生成 阅读全文
posted @ 2019-07-31 10:05 hofmann 阅读(5188) 评论(0) 推荐(2)