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

◆ AggregateCount()

object System.Data.Common.DataStorage.AggregateCount ( int[] recordNos)
inlineinherited

Definition at line 122 of file DataStorage.cs.

123 {
124 int num = 0;
125 for (int i = 0; i < recordNos.Length; i++)
126 {
127 if (!_dbNullBits.Get(recordNos[i]))
128 {
129 num++;
130 }
131 }
132 return num;
133 }

References System.Data.Common.DataStorage._dbNullBits, System.Xml.Dictionary, and System.Collections.BitArray.Get().

Referenced by System.Data.Common.DataStorage.Aggregate().