System.Data.Common.UInt64Storage.CopyValue C# (CSharp) Méthode

CopyValue() protected méthode

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