Convert.ChangeType() 将未知类型转换为已知类型

long content = 123;
object result = Convert.ChangeType(content, typeof(int));

其他常用的转换方法举例:

1、Convert.ToInt32(content)

2、int i=Int32.Parse(content)

3、int i=0;nt.TryParse(content,out i)

4、int i=(Int32)content

5、int? i=content as Int32 (content 必须为可为空数值)

相关文章:

  • 2022-12-23
  • 2022-03-03
  • 2022-12-23
  • 2021-09-11
  • 2021-07-24
  • 2021-08-15
  • 2021-07-27
  • 2021-07-15
猜你喜欢
  • 2021-07-16
  • 2021-08-19
  • 2022-12-23
  • 2021-08-19
相关资源
相似解决方案