如何在c#中获取字节数组的值?在Java中,我们可以使用byteValue方法。
c#
public async void writeOutDataAsync(Byte[] sendOutFinalByteArray)
{
byte[] bytesOut = new byte[sendOutFinalByteArray.Length];
int j = 0;
foreach (Byte b in sendOutFinalByteArray)
bytesOut[j++] = b.byteValue();
}