System.Runtime.Serialization.LongList.Add C# (CSharp) Method

Add() private method

private Add ( long value ) : void
value long
return void
        internal void Add(long value)
        {
            if (_totalItems == _values.Length)
            {
                EnlargeArray();
            }
            _values[_totalItems++] = value;
            _count++;
        }