摘要:
internal class Program { private static bool IsInterFaceDll(FileInfo file) { Assembly ass = Assembly.LoadFile(file.FullName); Type[] types = ass.GetTypes(); Type sContractType = typeof(ServiceContractAttribute); foreach (Type type in types... 阅读全文