我有这样的方法:
/// <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]"/>
这是我看到的: