摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kernel.Interface { public interface IObjcet { void Put()... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kernel.SimpleLibrary { public class Person { private str... 阅读全文
摘要:
本文实例讲述了C#中Activator.CreateInstance()方法用法。 Activator 类包含特定的方法,用以在本地或从远程创建对象类型,或获取对现有远程对象的引用。C#在类工厂中动态创建类的实例,所使用的方法为: 两种方法区别仅为:创建无参数的构造方法和创建有参数的构造函数。 但是 阅读全文
摘要:
如果某个"功能"需要动态更新?这种动态更新,可能是需求驱动的,也可能是为了修改 BUG,面对这种场景,如何实现“热插拔”呢?先解释一下“热插拔”:在系统运行过程动态替换某些功能,不用重启系统进程。下面看例子 几种方案 1 脚本化:采用 Iron 或 集成其它脚本引擎。2 AppDomain:微软的 阅读全文