51 {
52 get
53 {
55 if (num == -2)
56 {
57 throw ExceptionBuilder.CaseInsensitiveNameConflict(name);
58 }
59 if (num == -3)
60 {
61 throw ExceptionBuilder.NamespaceNameConflict(name);
62 }
63 if (num >= 0)
64 {
65 return (DataTable)
_list[num];
66 }
67 return null;
68 }
69 }
int InternalIndexOf(string tableName)