namespace struct结构体
{
public enum Gender
{
男,
女
}
public struct Person
{
public string name;
public int age;
public Gender gender;
public string address;
}
class Program
{
static void Main(string[] args)
{
Person zhang = new Person();
zhang.name = "张莅";
zhang.age = 25;
zhang.gender = Gender.男;
zhang.address = "广东深圳";
}
}
}