In .Net, how do I decorate a class with an intellisense hint?

I want to decorate classes and methods with text that intellisense shows when you instantiate a class or access a field.

For example, I want to give instructions for use.

I can not find a suitable decoration for this. How to do it?

+3
source share
2 answers

Just add this to the top of your class definition ...

/// <summary>
/// Returns a pointless string
/// </summary>
/// <param name="name">Parameter to personalise the rubbish returned</param>
/// <returns>Utter junk is returned</returns>

In cases where the final description is shown to describe the class, the node parameter for each element that describes each parameter and returns an operator describing the return value.

+9
source

, , Componenet

0

Source: https://habr.com/ru/post/1769865/


All Articles