System.Data.Common.Int16Storage.CopyValue C# (CSharp) Method

CopyValue() protected method

protected CopyValue ( int record, object store, BitArray nullbits, int storeIndex ) : void
record int
store object
nullbits System.Collections.BitArray
storeIndex int
return void
        protected override void CopyValue(int record, object store, BitArray nullbits, int storeIndex)
        {
            short[] typedStore = (short[])store;
            typedStore[storeIndex] = _values[record];
            nullbits.Set(storeIndex, !HasValue(record));
        }