System.Data.Common.UInt32Storage.CopyValue C# (CSharp) Метод

CopyValue() защищенный Метод

protected CopyValue ( int record, object store, BitArray nullbits, int storeIndex ) : void
record int
store object
nullbits System.Collections.BitArray
storeIndex int
Результат void
        protected override void CopyValue(int record, object store, BitArray nullbits, int storeIndex)
        {
            uint[] typedStore = (uint[])store;
            typedStore[storeIndex] = _values[record];
            nullbits.Set(storeIndex, !HasValue(record));
        }