如何读取字节数组中的前3个字节

时间:2010-09-24 07:24:10

标签: c#

我有字节数组,我只需要读取前3个字节而不是更多。

C#4.0

4 个答案:

答案 0 :(得分:16)

这些足够吗?

IEnumerable<byte> firstThree = myArray.Take(3);
byte[] firstThreeAsArray = myArray.Take(3).ToArray();
List<byte> firstThreeAsList = myArray.Take(3).ToList();

答案 1 :(得分:7)

怎么样:

Byte byte1 = bytesInput[0];
Byte byte2 = bytesInput[1];
Byte byte3 = bytesInput[2];

或者在数组中:

Byte[] threeBytes = new Byte[] { bytesInput[0], bytesInput[1], bytesInput[2] };

或者:

Byte[] threeBytes = new Byte[3];
Array.Copy(bytesInput, threeBytes, 0, 3); 
     // not sure on the overload but its similar to this

答案 2 :(得分:1)

简单的for循环也可以完成这项工作。

for(int i = 0; i < 3; i++) 
{
   // your logic
}

或者只是在数组中使用索引。

byte first = byteArr[0];
byte second = byteArr[1];
byte third = byteArr[2];

答案 3 :(得分:0)

byte b1 = bytearray[0];
byte b2 = bytearray[1];
byte b3 = bytearray[2];

数组从0开始索引,因此前3个字节位于数组的0,1和2个插槽中。