✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Considere o seguinte código em C#:
class Calculadora{ public int Somar(int a, int b) { return a + b; } public double Somar(double a, double b) { return a + b; }}
Qual das seguintes afirmações está correta?