xxxxxxxxxx
// Use the <inheritdoc .../> like this
// And they will have the same docs:
public class Class
{
/// <summary>
/// Verify a control on the dialog
/// </summary>
/// <param name="args">
/// Arguments: [Property, Condition, Expected Value, Tolerance]
/// Properties: STATE, VALUE, LABEL
/// Conditions: Exists, DoesNotExist, IsEnabled, IsDisabled, ...
/// Expected Value (optional): blah blah
/// Tolerance (optional): blah blah blah
/// </param>
public string Fuction(string[] args)
{
///...
}
}
public class SimilarClass
{
/// <inheritdoc cref="IsodoseControl.VerifyIsodoseControl" />
public string SimilarFuction(string[] args)
{
// ...
}
}
// Read more here: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/recommended-tags#inheritdoc
///