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

◆ AddTablesToList()

void System.Data.XSDSchema.AddTablesToList ( List< DataTable > tableList,
DataTable dt )
inlineprivate

Definition at line 2332 of file XSDSchema.cs.

2333 {
2334 if (tableList.Contains(dt))
2335 {
2336 return;
2337 }
2338 tableList.Add(dt);
2339 foreach (DataTable item in _tableDictionary[dt])
2340 {
2342 }
2343 }
bool ICollection< KeyValuePair< TKey, TValue > >. Contains(KeyValuePair< TKey, TValue > keyValuePair)
void Add(TKey key, TValue value)
Dictionary< DataTable, List< DataTable > > _tableDictionary
Definition XSDSchema.cs:63
void AddTablesToList(List< DataTable > tableList, DataTable dt)

References System.Collections.Generic.Dictionary< TKey, TValue >.Add(), System.Collections.Generic.Dictionary< TKey, TValue >.Contains(), and System.item.