INT的C#setters

时间:2011-10-20 17:51:37

标签: c# int setter

正如我已经做过的那样,我有这段代码:

 private string opt;// create a property
        public string optionInterval
        {
            get
            {
                return opt;
            }
            set
            {
                opt = value;
            }
        }

如何将opt更改为整数? 特别是在设定部分?

2 个答案:

答案 0 :(得分:6)

public int optionInterval { get; set; }

使用Auto-Implemented Properties

<小时/> 这是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);
            }
        }