最佳答案
简单的代码:
class foo
{
private int a;
private int b;
public foo(int x, int y)
{
a = x;
b = y;
}
}
class bar : foo
{
private int c;
public bar(int a, int b) => c = a * b;
}
VisualStudio 抱怨 bar
构造函数:
CS7036错误没有给出与
foo.foo(int, int)
所需的形式参数x
相对应的参数。
What?