您好,登录后才能下订单哦!
这篇文章主要为大家详细介绍C#枚举和结构的简单使用,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
namespace _26枚举和结构使用
{
//声明一个枚举类型
public enum Gender
{
男,
女
}
//声明一个结构类型
public struct Person
{
public string _name;
public int _age;
public Gender _gender;
}
class Program
{
static void Main(string[] args)
{
//定义一个结构类型Person,有三个成员,分别为姓名,性别,年龄 性别用枚举类型
//声明两个Person类型的变量,分别表示 张三 男 18岁/ 小雪 女 16岁
Person zsPerson;
zsPerson._name = "张三";
zsPerson._age = 18;
zsPerson._gender = Gender.男; //注意:枚举这里是用Gender点出男或女
Person xxPerson; xxPerson._name = "小雪"; xxPerson._age = 16; xxPerson._gender = Gender.女; Console.WriteLine("{0}今年{1}岁,性别{2}", zsPerson._name, zsPerson._age, zsPerson._gender); Console.WriteLine("{0}今年{1}岁,性别{2}", xxPerson._name, xxPerson._age, xxPerson._gender); Console.ReadKey(); }
}
}
以上就是C#枚举和结构的简单使用的方法介绍,详细使用情况还得要大家自己使用过才能知道具体要领。如果想了解更多相关内容,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。