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

CopyValue() protected method

protected CopyValue ( int record, object store, BitArray nullbits, int storeIndex ) : void
record int
store object
nullbits BitArray
storeIndex int
return void
        protected override void CopyValue(int record, object store, BitArray nullbits, int storeIndex)
        {
            sbyte[] typedStore = (sbyte[])store;
            typedStore[storeIndex] = _values[record];
            nullbits.Set(storeIndex, IsNull(record));
        }