When you work in Visual Studio 2010 and write a comment on a method and click enter
Visual Studio 2010 allows you to create “see” and “see also” XML comments.
If you type in comment “see” and press TAB then it looks like
/// <see cref=""/>
/// <seealso cref=""/>
What is meaning of it in C#?
Both are XML documentation tags that are compiler verified.
<see>is for placing links directly in the text.<seealso>is to place text in the “See Also” section.See how they are used in this example.