c# - Intellisense doesn't show comments -


if type in visualstudio2010 dataset1. list of available methods , properties (intellisense). works fine. if select method or property in list don't description of if.

for example if have like:

public class dummy {     /// <summary>     /// test-method     /// </summary>     public string { get; set; } } 

and usage is:

dummy dummy = new dummy(); dummy.do = "dummy"; 

at moment when type dummy.do want have property-comment displayed in list of intellisense. shown tooltip.

how can turn behavior on?

look in tools > options > text editor > c#. make sure parameter information checked.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -