System.Data.Common.SqlInt16Storage.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)
        {
            SqlInt16[] typedStore = (SqlInt16[])store;
            typedStore[storeIndex] = _values[record];
            nullbits.Set(storeIndex, IsNull(record));
        }