-
C#教程之C# 枚举(3)
2.将int类型强转为枚举类型
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
namespace _04枚举和 int 以及 string 类型之间的转换 { public enum QQState { OnLine=1, OffLine, Leave, Busy, QMe } class Program { static void Main( string [] args) { #region 将int类型强转为枚举类型 int n1 = 3; QQState state = (QQState)n1; Console.WriteLine(state); Console.ReadKey(); #endregion } } } |
3.将枚举类型转换成字符串类型
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
amespace _04枚举和 int 以及 string 类型之间的转换 { public enum QQState { OnLine=1, OffLine, Leave, Busy, QMe } class Program { static void Main( string [] args) { #region 将枚举类型转换成字符串类型 //所有的类型都能够转换成string类型 int n1 = 10; // double n1 = 3.14; decimal n1 = 5000m; string s1= n1.ToString(); Console.WriteLine(s1); QQState state = QQState.OnLine; string s = state.ToString(); Console.WriteLine(s); Console.ReadKey(); #endregion } } } |
栏目列表
最新更新
微软并发Key-Value存储库FASTER介绍
C# 枚举
文件操作及编码格式
设计模式-简单工厂模式
C#中巧用妙法避免嵌套方式使用两个fore
C# 中yield关键字解析
爬腾讯招聘
python基础(13):函数名的使用、第一类对象
python中反转列表的三种方式
Python中执行系统命令的四种方法
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能
将Session值储存于SQL Server中
使用SQL Server数据库嵌套子查询的方法
SQL概述