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

◆ Insert() [1/3]

void System.Data.Common.DataTableMappingCollection.Insert ( int index,
DataTableMapping value )
inline

Definition at line 281 of file DataTableMappingCollection.cs.

282 {
283 if (value == null)
284 {
285 throw ADP.TablesAddNullAttempt("value");
286 }
287 Validate(-1, value);
288 value.Parent = this;
289 ArrayList().Insert(index, value);
290 }
void Validate(int index, [NotNull] DataTableMapping value)

References System.Data.Common.DataTableMappingCollection.ArrayList(), System.index, System.Data.Common.ADP.TablesAddNullAttempt(), System.Data.Common.DataTableMappingCollection.Validate(), and System.value.