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

◆ GetChannelData()

ulong[] System.Diagnostics.Tracing.ManifestBuilder.GetChannelData ( )
inline

Definition at line 209 of file ManifestBuilder.cs.

210 {
211 if (channelTab == null)
212 {
213 return Array.Empty<ulong>();
214 }
215 int num = -1;
216 foreach (int key in channelTab.Keys)
217 {
218 if (key > num)
219 {
220 num = key;
221 }
222 }
223 ulong[] array = new ulong[num + 1];
225 {
226 array[item.Key] = item.Value.Keywords;
227 }
228 return array;
229 }
Dictionary< int, ChannelInfo > channelTab

References System.array, System.Diagnostics.Tracing.ManifestBuilder.channelTab, System.item, System.key, and System.Collections.Generic.Dictionary< TKey, TValue >.Keys.