本帖最后由 sazn1314 于 2013-1-22 15:59 编辑
现在看视频看到枚举和构造了,然后写了这个,可是一直出错
提示:错误 1 可访问性不一致: 字段类型“枚举和构造体.Gender”比字段“枚举和构造体.Person.sex”的可访问性低 E:\我的C#\01我的第一个项目\我的第一个程序\枚举和构造体\Program.cs 15 19 枚举和构造体
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 枚举和构造体
{
public enum Gender
{
男,
女,
}
public struct Person
{
public string name;
public Gender sex;
public int age;
}
public class Program
{
static void Main(string[] args)
{
Person oneperson;
oneperson.name="张三";
oneperson.sex = Gender.男;
oneperson.age = 18;
Person twoperson;
twoperson.name = "李四";
twoperson.sex = Gender.男;
twoperson.age = 26;
}
}
}
请问该怎么改呢。。谢谢。。。。
|