C#枚举和结构的简单使用

发布时间:2020-05-11 14:36:27 作者:Leah
来源:亿速云 阅读:289

这篇文章主要为大家详细介绍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#枚举和结构的简单使用的方法介绍,详细使用情况还得要大家自己使用过才能知道具体要领。如果想了解更多相关内容,欢迎关注亿速云行业资讯频道!

推荐阅读:
  1. 第五节 枚举和结构体
  2. c#枚举的示例分析

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

枚举结构

上一篇:如何看懂MySQL执行计划

下一篇:配置热备份路由协议(HSRP)

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》