动态调用接口
Type type = Type.GetType(configTab["className"].ToString());//类的完整签名 CMS.Common.CDN.Lanxun
Type objType = type.GetInterface(typeof(ICDN).FullName);// lanxun.cs 实现的接口
if (objType != null)
{
cdn = (ICDN)Activator.CreateInstance(type);
}
cdn.init(configTab);
Type objType = type.GetInterface(typeof(ICDN).FullName);// lanxun.cs 实现的接口
if (objType != null)
{
cdn = (ICDN)Activator.CreateInstance(type);
}
cdn.init(configTab);