C#实现byte与sbyte的转换byte[] mByte; sbyte[] mSByte = new sbyte[mByte.Length]; for (int i = ; i < mByte.Length; i++) { mSByte[i] = (sbyte)mByte[i]; }