Enum、int、string之间的快速转换
2021-02-16 00:19
标签:eof code 枚举类型 项目 div htm 使用 typeof 快速 在项目中经常会使用枚举类型,而在不同的地方需要使用不同的类型,比如:Enum、int、string之间的快速转换。 (2)Enum转换为int (a)String转换为Enum 出处:https://www.cnblogs.com/mqingqing123/p/8456242.html Enum、int、string之间的快速转换 标签:eof code 枚举类型 项目 div htm 使用 typeof 快速 原文地址:https://www.cnblogs.com/mq0036/p/12711999.htmlpublic enum Color {
Red=1,
Green=2
}
(1)Enum转换为StringColor.Read.ToString()
Convert.ToString(Color.Green)
Convert.ToInt32(Color.Green)
(Color)Enum.Parse(typeof(Color), "Red");
(b)Int转换为Num(Color)1
上一篇:JAVA输入输出
下一篇:JAVA爬取天天基金网数据
文章标题:Enum、int、string之间的快速转换
文章链接:http://soscw.com/index.php/essay/55850.html