如何将 Int[][] 转换为 Double[][]?
伙计们,很抱歉问了基本问题,
我在这里遇到一个问题,我有一个 Int[][]
锯齿状数组,我想将其转换为 Double[][]
锯齿状阵列。当然,我不想更改数组内的值,例如:
int[2][1] = 25
当它转换为双精度时,
int[2][1] = 25
仍然相同。
这是我的代码,
value = File.ReadLines(filename)
.Select(line => line.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
.Select(MyIntegerParse)
.ToArray()
)
.ToArray();
所以我有 value[][] ,它的类型是整数。我想将其转换为双精度。
感谢您的任何帮助。
Guys, sorry for asking basic question,
i have a problem here where I have a Int[][]
jagged array, and I want to convert it to Double[][]
jagged array. Of course I don't want to change the value inside the array for example:
int[2][1] = 25
and when it converted to double,
int[2][1] = 25
still the same.
here's my code,
value = File.ReadLines(filename)
.Select(line => line.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
.Select(MyIntegerParse)
.ToArray()
)
.ToArray();
So i have value[][] which is type is integer. and i want to convert it to double.
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
像这样的辅助函数可能会起作用
something like this helperfunction might work