类型转换;
显示转换,隐式转换
显示转换:注意数据是否益处
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 }
时间: 2024-11-09 04:55:46