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

◆ Set()

override void System.Data.Common.UInt64Storage.Set ( int record,
object value )
inline

Definition at line 207 of file UInt64Storage.cs.

208 {
209 if (_nullValue == value)
210 {
211 _values[record] = 0uL;
212 SetNullBit(record, flag: true);
213 }
214 else
215 {
216 _values[record] = ((IConvertible)value).ToUInt64(base.FormatProvider);
217 SetNullBit(record, flag: false);
218 }
219 }
void SetNullBit(int recordNo, bool flag)

References System.Data.Common.DataStorage._nullValue, System.Data.Common.UInt64Storage._values, System.Xml.Dictionary, System.Data.Common.DataStorage.SetNullBit(), and System.value.