标签:ring dom direct pre object rect app form pdo
static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args) { string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"lib\"); path = Path.Combine(path, args.Name.Split(‘,‘)[0]); path = String.Format(@"{0}.dll", path); return System.Reflection.Assembly.LoadFrom(path); } AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
标签:ring dom direct pre object rect app form pdo
原文地址:http://www.cnblogs.com/daxiaya/p/6931693.html