0

我正在尝试使用 Visual Studio 2012 的 .natvis 文件在 Watch 窗口中显示自定义类,但无法显示。

如果我有这个结构

namespace a {
    namespace b {
        template<class T, class myClass, class myOtherclass> class hereBeDragons;
    }

    typedef b::hereBeDragons<firstParam, secondParam, thirdParam> IWantToSeeThis;
}

我想显示 IWantToSeeThis 类的对象。我需要使用什么语法?

我试过这些:

  <Type Name="a::IWantToSeeThis">
    <DisplayString> Here are my values </DisplayString>
  </Type>

  <Type Name="a::b::hereBeDragons">
    <DisplayString> Here are my values </DisplayString>
  </Type>

  <Type Name="a::b::hereBeDragons&at;&bt;&ct">
    <DisplayString> Here are my values </DisplayString>
  </Type>   

<Type Name="a::IWantToSeeThis&at;&bt;&ct;">
    <DisplayString> Here are my values</DisplayString>
</Type>   

但他们都没有看到导致显示结构。

我已尝试通过创建注册表项来启用诊断,如下所述:

https://code.msdn.microsoft.com/Writing-type-visualizers-2eae77a2

但是当我重新启动开发工作室时,输出窗口中没有显示任何诊断信息。

4

1 回答 1

0

我已经解决了:

<Type Name="a::b::hereBeDragons&lt;*,*,*&gt;">
<DisplayString>
Here are my values
</DisplayString>
</Type>
于 2016-04-14T07:28:39.043 回答