gpt4 book ai didi

c# - 创建一个set get类并在构造函数中传递参数

转载 作者:行者123 更新时间:2023-11-30 19:02:24 26 4
gpt4 key购买 nike

我是 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;
}

}

这两行

this.key = this.setKey(key);
this.value = this.setValue(value);

有问题,有人知道问题所在吗?

最佳答案

这里你只需要两个属性或者直接使用

public class Pair
{
public string Key { get; private set; }
public string Value { get; private set; }

public Pair(string key, string value)
{
this.Key= key;
this.Value = value;
}
}

关于c# - 创建一个set get类并在构造函数中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12928144/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com