码迷,mamicode.com
首页 > Windows程序 > 详细

C# 小知识的积累

时间:2016-10-12 16:52:17      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

类型转换;

      显示转换,隐式转换 

显示转换:注意数据是否益处

checked(expression)

unchecked(expression);//可以改变益出检查的默认设置

      枚举转换

Ex:

技术分享
   static void Main(string[] args)
        {
            string str = "noth";
       
        test t = (test)Enum.Parse(typeof(test), str);
        }
         enum test
    {
        noth,
        noth1
    }
View Code

 

C# 小知识的积累

标签:

原文地址:http://www.cnblogs.com/haimingkaifa/p/5953158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!