正如我已经做过的那样,我有这段代码:
private string opt;// create a property
public string optionInterval
{
get
{
return opt;
}
set
{
opt = value;
}
}
如何将opt更改为整数? 特别是在设定部分?
答案 0 :(得分:6)
public int optionInterval { get; set; }
<小时/>
这是GianT971答案的工作版本:
private int opt;
public string optionInterval
{
get
{
return opt.ToString();
}
set
{
opt = Convert.ToInt32(value);
}
}
答案 1 :(得分:5)
private int opt;
public string optionInterval
{
get
{
return opt.ToString();
}
set
{
opt = Convert.ToInt32(value);
}
}