我已经为 Visual Studio 编写了一个自定义可视化工具,它适用于类(用户定义)和集合(泛型)。
但它现在显示在应用程序中。我已将 dll 放在适当的位置,这不是问题...
问题是它的类型定义。
我在可视化器类上放置了以下属性。
[assembly: System.Diagnostics.DebuggerVisualizer(
typeof(ObjectToI.WriteICodeFromObject),
typeof(VisualizerObjectSource),
Target = typeof(System.Object),**here i am not sure what to put as my visualizer will work for both user defined classes and generics collections.**
Description = "Object To I Code Visualizer")]
请建议我应该在目标类型中输入什么,因为我的可视化工具适用于用户定义的类和列表/IEnumerable。
我已经尝试过 System.Object 但这不起作用
我试过System.Collections.Generic.IList
了,但那也行不通,甚至不在名单上..
请建议...