Get set

 public enum Vista
        {
            aaa, bbb
        }

        private Vista style = Vista.aaa;
                      // We set the initial value for style.
        public Vista Style
        {
            get { return style; }
            set { style = value; }
        }
get 中使用关键词 returnset 中使用关键词 value

原文地址:https://www.cnblogs.com/greencolor/p/1565623.html