Referencing another class in documentation C# with Example



Referencing another class in documentation C# with Example

The  tag can be used to link to another class. It contains the cref member which should contain the name of 
the class that is to be referenced. Visual Studio will provide Intellsense when writing this tag and such references 
will be processed when renaming the referenced class, too. 
///  
/// You might also want to check out . 
///  
public class SomeClass 
{ 
} 
In Visual Studio Intellisense popups such references will also be displayed colored in the text. 
To reference a generic class, use something similar to the following: 
///  
/// An enhanced version of . 
///  
public class SomeGenericClass 
{ 
} 
 

0 Comment's

Comment Form