我正在嘗試寫我自己的智能感知評論到我的消息來源爲
stackoverflow 8240402
stackoverflow 1632942
描述,但它沒有正常工作。我使用VS 2008智能感知上公開課沒有顯示,但在私房
我有一個組件 「testAssembly」(編譯爲DLL)與ref class class1a
和public ref class class1b
:
namespace testAssembly
{
/// <summary>
/// Testkommentar class1a
/// </summary>
ref class class1a
{
int m_iValue;
public:
/// <summary>
/// Testkommentar class1a constructor
/// </summary>
class1a();
/// Testkommentar class1a func1a
void func1a (int i_iValue);
};
}
class1b是相同的。
在這個DLL的項目中,它幾乎可以正常工作(儘管愚蠢的'summary'和'/ summary'也顯示在intellisense工具提示中)。我確實看到除public ref class1b
之外的每個文字。
在另一個項目,是指該DLL的項目(直接通過組裝,而不是通過文件),我看到(私人)ref class1a
的文本(沒有當然的成員,因爲它們是私有的),但沒有public ref class1b
。
而當我添加或刪除public
時,行爲也會發生變化。
我怎樣才能使它工作?