问答详情
源自:5-1 C# 值类型和引用类型

c#用枚举类型时出现了访问不一致的问题怎么解决

 public string name;
        public int age;
        private Gender sex;
        public Child(string name, int age, Gender sex)
        {
            this.name = name;
            this.age = age;
            this.sex = sex;        }


提问者:小鱼仙倌 2018-11-04 09:42

个回答

  • qq_乾_4
    2018-11-08 11:41:11

    public string name;  

       public int age;       

       public Gender sex;      

       public Child(string name, int age, Gender sex)      

      {          

        this.name = name;          

        this.age = age;          

         this.sex = sex;      

      }