System.Runtime.Serialization.Formatters.Binary.IntSizedArray.IntSizedArray C# (CSharp) Method

IntSizedArray() private method

private IntSizedArray ( IntSizedArray sizedArray ) : System.Collections.Concurrent
sizedArray IntSizedArray
return System.Collections.Concurrent
        private IntSizedArray(IntSizedArray sizedArray)
        {
            _objects = new int[sizedArray._objects.Length];
            sizedArray._objects.CopyTo(_objects, 0);
            _negObjects = new int[sizedArray._negObjects.Length];
            sizedArray._negObjects.CopyTo(_negObjects, 0);
        }

Same methods

IntSizedArray::IntSizedArray ( ) : System.Collections.Concurrent