System.IO.BACnet.BacnetClient.AssembleSegments C# (CSharp) Méthode

AssembleSegments() private méthode

private AssembleSegments ( ) : byte[]
Résultat byte[]
        private byte[] AssembleSegments()
        {
            int count = 0;
            foreach (byte[] arr in m_segments)
                count += arr.Length;
            byte[] ret = new byte[count];
            count = 0;
            foreach (byte[] arr in m_segments)
            {
                Array.Copy(arr, 0, ret, count, arr.Length);
                count += arr.Length;
            }
            return ret;
        }
BacnetClient