非常に基本的な質問だと思います。
public class person {
public string name;
public int status;
public int ability;
public person() { }
public person(string name, int status, int ability)
{
this.name = name;
this.status = status;
this.ability = ability;
}
public static int praise() {
return ++status;
}
}
C#でクラスを作成したいのですが、新しいクラスごとに「ステータス」を追加する機能があります。ただし、「ステータス」は静的ではないため、エラーが発生します。どうすればこの問題を解決できますか?どうもありがとうございます。