C# Convert.ChangeType()
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 必须为可为空数值)
本博客是个人工作中记录,更深层次的问题可以提供有偿技术支持。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。