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

◆ NestedParentsCount

int System.Data.DataTable.NestedParentsCount
getpackageinherited

Definition at line 588 of file DataTable.cs.

589 {
590 get
591 {
592 int num = 0;
593 foreach (DataRelation parentRelation in ParentRelations)
594 {
595 if (parentRelation.Nested)
596 {
597 num++;
598 }
599 }
600 return num;
601 }
602 }
DataRelationCollection ParentRelations
Definition DataTable.cs:572