I'm creating an application where in classes I have a series of overload 's to optimize performance and flexibility. Ex:
public class Calc
{
// método original com sumário
/// <summary>
/// soma "a" com "b"
/// </summary>
/// <returns></returns>
public int soma(int a, int b) => a + b;
// métodos complementares de conversão (overload) sem comentários
public int soma(string a, int b) => soma(int.Parse(a), b);
public int soma(string a, string b) => soma(int.Parse(a), int.Parse(b));
}
Is there any way, when I call one of the complementary methods, it show me the doc of the original method?