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