asp.netを初めて使用し、オブジェクトを作成しようとしていますが、構文エラーがあります
public class pair
{
private string key;
private string value;
public pair(string key, string value)
{
this.key = this.setKey(key);
this.value = this.setValue(value);
}
private void setKey (string key) {
this.key = key;
}
public string getKey()
{
return this.key;
}
private void setValue(string value)
{
this.value = value;
}
public string getValue()
{
return this.value;
}
}
これらの2行
this.key = this.setKey(key);
this.value = this.setValue(value);
何か問題があります、誰かが問題を知っていますか?