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

◆ Remove() [1/3]

void System.Data.Common.DataColumnMappingCollection.Remove ( DataColumnMapping value)
inline

Definition at line 336 of file DataColumnMappingCollection.cs.

337 {
338 if (value == null)
339 {
340 throw ADP.ColumnsAddNullAttempt("value");
341 }
342 int num = IndexOf(value);
343 if (-1 != num)
344 {
345 RemoveIndex(num);
346 return;
347 }
348 throw ADP.CollectionRemoveInvalidObject(ItemType, this);
349 }

References System.Data.Common.ADP.CollectionRemoveInvalidObject(), System.Data.Common.ADP.ColumnsAddNullAttempt(), System.Data.Common.DataColumnMappingCollection.IndexOf(), System.Data.Common.DataColumnMappingCollection.RemoveIndex(), and System.value.