示例#1
0
 public static Type FindComponent(this AppDomain domain, string component)
 {
     return(domain.FindComponents()
            .Where(componentType => componentType.Name.EndsWith(component))
            .FirstOrDefault());
 }