我有这个数组
char[] A = ['1', '2', '3', '4']
我想将其转换为 int[]
And I want to convert it to int[]
int[] Aint=[1, 2, 3, 4]
有什么想法吗?
我刚开始编程
谢谢
另一个选项,使用 Array.ConvertAll
和 Char.GetNumericValue
:
Another option, using Array.ConvertAll
and Char.GetNumericValue
:
int[] Aint = Array.ConvertAll(A, c => (int)Char.GetNumericValue(c));
这篇关于将char数组转换为int数组c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!