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

◆ Contains() [2/4]

bool System.Data.DataTableCollection.Contains ( string name,
string tableNamespace )
inline

Definition at line 419 of file DataTableCollection.cs.

420 {
421 if (name == null)
422 {
423 throw ExceptionBuilder.ArgumentNull("name");
424 }
425 if (tableNamespace == null)
426 {
427 throw ExceptionBuilder.ArgumentNull("tableNamespace");
428 }
429 return InternalIndexOf(name, tableNamespace) >= 0;
430 }

References System.Data.ExceptionBuilder.ArgumentNull(), and System.Data.DataTableCollection.InternalIndexOf().