Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CopyValue()

override void System.Data.Common.StringStorage.CopyValue ( int record,
object store,
BitArray nullbits,
int storeIndex )
inlineprotected

Definition at line 197 of file StringStorage.cs.

198 {
199 string[] array = (string[])store;
200 array[storeIndex] = _values[record];
201 nullbits.Set(storeIndex, IsNull(record));
202 }
void Set(int index, bool value)
Definition BitArray.cs:326

References System.Data.Common.StringStorage._values, System.array, System.Data.IsNull, and System.Collections.BitArray.Set().