首页 > 代码库 > C# 小知识的积累

C# 小知识的积累

类型转换;

      显示转换,隐式转换 

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

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# 小知识的积累