我有這樣一個方法,以便:獲取.NET XML文檔返回特定類型的字典
/// <summary>
/// Gets a typed Dictionary of <see cref="T:System.Collections.Generic.Dictionary`2"/>
/// </summary>
/// <returns></returns>
public Dictionary<string, object> ToDictionary()
當我調用這個方法,看看它顯示了智能感知它返回Dictionary<TKey,TValue>
是否有一種爲智能感知顯示Dictionary<string, object>
我想下面的,但失敗:
<see cref="System.Collections.Generic.Dictionary`2[System.String,System.Object]"/>
這是我看到:
但它確實表明'詞典<字符串,對象>'在彈出的,因爲你想? – andreister
是的,它只是在它顯示的intellisense中的註釋位字典 –
Jon