我想知道是否有可能在智能感知中显示方法的所有属性。 这是代码示例。
我有以下方法:
/// <summary>
/// My summary
/// </summary>
/// <param name="someVar"></param>
/// <showAttributes></showAttributes> <-- I need to specify here that intellisense should also show attributes of this method
/// <returns></returns>
[MyCustomAttribute1(MyCustomEnum.Value1)]
[MyCustomAttribute2(true)]
public async Task Assign(string someVar)
{
//code goes here
}
现在,我需要从另一个类调用该函数。当我键入.Assign
时,会出现智能感知提示,指向summary
。我需要在Intellisense弹出属性中显示带有被调用函数中参数的参数。
使用标准工具可以做到这一点吗?如果对此有任何扩展,我将不胜感激,如果它也适用于Mac的Visual Studio。