I have written one custom visualizer for visual studio, which works on class (user defined) and collection (generics).
But its now showing in application. i have put the dlls on proper place and thats not a issue...
the issue is its Type defining.
I have put below attribute on visualizer class.
[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")]
please suggest what should i put in target type as my visualizer will work for user defined classes and lists/IEnumerable.
I have tried System.Object but that is not working
I have tried System.Collections.Generic.IList
but that also not working, even not on List..
please suggest...