System.Data.Common.SqlInt32Storage.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 BitArray
storeIndex int
Résultat void
        protected override void CopyValue(int record, object store, BitArray nullbits, int storeIndex)
        {
            SqlInt32[] typedStore = (SqlInt32[])store;
            typedStore[storeIndex] = _values[record];
            nullbits.Set(storeIndex, IsNull(record));
        }