-8
このエラーが発生していますか?CS7036 C#必要な仮パラメータに対応する引数はありません
namespace CalculatorTest
{
public class Calculator
{
public int operand1;
public int operand2;
public static string s;
public static int n;
public string WriteText(string s)
{
return s;
}
public string WriteNumber(int n)
{
return n.ToString();
}
public Calculator(int operand1, int operand2) : base()
{
this.operand1 = operand1;
this.operand2 = operand2;
}
}
class Program
{
static void Main(string[] args)
{
Calculator c = new Calculator();
}
}
}
あなたは少なくともあなたのエラーがどのラインであるか教えていただけますか?ここに助けてください... – DavidG
...ヒントとして、あなたのコンストラクタは引数を必要とします... – DavidG