How to make reference from XML comment of UpdateChanged to Long1 field?
public sealed class SystemConfiguration
{
public long Long1;
/// <summary>
/// Make reference to Long1
/// </summary>
public bool UpdateChanged;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
<see cref="SystemConfiguration.Long1"/>.Visual Studio generates an XML documentation file where each member is assigned an unique ID. You can check the rules for ID generation at:
Processing the XML File
In this situation the full ID that will be generated is
F:YourNamespace.SystemConfiguration.Long1. However you can use the shorter version because you are in the same class.