6

我已经创建了 Visual Studio 2012 包(使用 VS2012 SDK)。此扩展(如果安装在客户端的 IDE 环境中)应该具有从开发人员正在处理的当前打开的解决方案中收集所有特定类型的功能。ASP.NET MVC 应用程序项目的 Visual Studio 设计器中嵌入了类似的功能,开发人员在其中实现模型/控制器类,构建项目,然后能够在脚手架 UI(设计器的下拉列表)中访问此类型。WPF、WinForms Visual Designers等也提供了相应的功能。

假设我的扩展必须从当前解决方案中收集所有实现ISerializable接口的类型。步骤如下:开发人员创建特定类,重建包含项目/解决方案,然后执行扩展 UI 提供的一些操作,从而涉及执行ISerializable类型收集。

我尝试使用反射来实现收集操作:

List<Type> types = AppDomain.CurrentDomain.GetAssemblies().ToList()
                  .SelectMany(s => s.GetTypes())
                  .Where(p => typeof(ISerializable).IsAssignableFrom(p) && !p.IsAbstract).ToList();

但是上面的代码会导致System.Reflection.ReflectionTypeLoadException抛出异常:

System.Reflection.ReflectionTypeLoadException was unhandled by user code
  HResult=-2146232830
  Message=Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
  Source=mscorlib
  StackTrace:
       at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
       at System.Reflection.RuntimeModule.GetTypes()
       at System.Reflection.Assembly.GetTypes()
(...)  
LoaderException: [System.Exception{System.TypeLoadException}]
{"Could not find Windows Runtime type   'Windows.System.ProcessorArchitecture'.":"Windows.System.ProcessorArchitecture"}
(...)

如何正确实施从当前构建的解决方案中收集特定类型的操作?

4

2 回答 2

1

我正在尝试做类似的事情,不幸的是,到目前为止我发现的唯一方法是执行以下操作(我觉得这有点混乱,但可能针对特定情况进行一些调整可能没问题)

var assemblies = AppDomain.CurrentDomain.GetAssemblies();
IEnumerable<Type> types = assemblies.SelectMany(x => GetLoadableTypes(x));

...

public static IEnumerable<Type> GetLoadableTypes(Assembly assembly)
{
    try
    {
        return assembly.GetTypes();
    }
    catch (ReflectionTypeLoadException e)
    {
        return e.Types.Where(t => t != null);
    }
}

这将为您提供所有类型,但您可以过滤掉任何您想要的类型。

引用了这篇文章:How to prevent ReflectionTypeLoadException when calling Assembly.GetTypes()

于 2014-07-16T14:48:59.810 回答
0

我不确定我是否正确理解你,但如果我是这样的话:

var assembly = Assembly.GetExecutingAssembly();
IEnumerable<Type> types = 
      assembly.DefinedTypes.Where(t => IsImplementingIDisposable(t))
                           .Select(t => t.UnderlyingSystemType);

........

private static bool IsImplementingIDisposable(TypeInfo t)
{
     return typeof(IDisposable).IsAssignableFrom(t.UnderlyingSystemType);
}
于 2013-10-02T17:49:02.020 回答