Home  >  Article  >  Backend Development  >  C# binary byte array operation function sample code for intercepting byte array SubByte

C# binary byte array operation function sample code for intercepting byte array SubByte

黄舟
黄舟Original
2017-03-13 17:46:113079browse

C#Binary ByteArrayOperationFunction Intercept byte array SubByte

        /// 
        /// 截取字节数组
        /// 
        /// 要截取的字节数组
        /// 开始截取位置的索引
        /// 要截取的字节长度
        /// 截取后的字节数组
        public byte[] SubByte(byte[] srcBytes, int startIndex, int length)
        {
            System.IO.MemoryStream bufferStream = new System.IO.MemoryStream();
            byte[] returnByte = new byte[] { };
            if (srcBytes == null) { return returnByte; }
            if (startIndex < 0) { startIndex = 0; }
            if (startIndex < srcBytes.Length)
            {
                if (length < 1 || length > srcBytes.Length - startIndex) { length = srcBytes.Length - startIndex; }
                bufferStream.Write(srcBytes, startIndex, length);
                returnByte = bufferStream.ToArray();
                bufferStream.SetLength(0);
                bufferStream.Position = 0;
            }
            bufferStream.Close();
            bufferStream.Dispose();
            return returnByte;
        }

    }

The above is the detailed content of C# binary byte array operation function sample code for intercepting byte array SubByte. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn