阅读量:0
在C#中,Convert类用于将一个数据类型转换为另一个数据类型。Convert类提供了一系列的静态方法来实现不同数据类型之间的转换。下面是Convert类的一些常用方法:
- Convert.ToBoolean():将指定对象转换为布尔值。
- Convert.ToInt32():将指定对象转换为32位有符号整数。
- Convert.ToDouble():将指定对象转换为双精度浮点数。
- Convert.ToString():将指定对象转换为字符串。
- Convert.ToDateTime():将指定对象转换为日期时间。
使用方法如下所示:
int intValue = Convert.ToInt32("123"); // 将字符串转换为整数 double doubleValue = Convert.ToDouble("3.14"); // 将字符串转换为双精度浮点数 bool boolValue = Convert.ToBoolean("true"); // 将字符串转换为布尔值 DateTime dateTimeValue = Convert.ToDateTime("2022-01-01"); // 将字符串转换为日期时间 string strValue = Convert.ToString(123); // 将整数转换为字符串
需要注意的是,在使用Convert类进行类型转换时,确保源对象的类型和目标类型是兼容的,否则会抛出异常。