标签:
类型转换;
显示转换,隐式转换
显示转换:注意数据是否益处
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 }
标签:
原文地址:http://www.cnblogs.com/haimingkaifa/p/5953158.html