本文介绍了转换的字节数组短阵中的C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在读文件,并希望能够从文件中获取到短阵中的字节数组转换。
I'm currently reading a file and wanted to be able to convert the array of bytes obtained from the file into a short array.
我将如何去这样做呢?
推荐答案
一种可能是使用的:
One possibility is using Enumerable.Select
:
byte[] bytes;
var shorts = bytes.Select(b => (short)b).ToArray();
另一种是使用的:
byte[] bytes;
var shorts = Array.ConvertAll(bytes, b => (short)b);
这篇关于转换的字节数组短阵中的C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!