Suppose I have a method in a class
public class MyClass{
public int MyInt;
/// <summary>
/// Prints out the value of <paramref name="MyInt">
/// </summary>
public void PrintValueOfMyInt()
{
...
}
}
Is this the correct way to refer to the MyInt member in the XML doc above PrintValueOfMyInt? If not, how to do it?
<see>: learn.microsoft.com/en-us/dotnet/csharp/language-reference/…