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