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

◆ Insert() [1/3]

void System.Data.Common.DataColumnMappingCollection.Insert ( int index,
DataColumnMapping value )
inline

Definition at line 283 of file DataColumnMappingCollection.cs.

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

References System.Data.Common.DataColumnMappingCollection.ArrayList(), System.Data.Common.ADP.ColumnsAddNullAttempt(), System.index, System.Data.Common.DataColumnMappingCollection.Validate(), and System.value.