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

◆ SelfNested

bool System.Data.DataTable.SelfNested
getpackageinherited

Definition at line 252 of file DataTable.cs.

253 {
254 get
255 {
256 foreach (DataRelation parentRelation in ParentRelations)
257 {
258 if (parentRelation.Nested && parentRelation.ParentTable == this)
259 {
260 return true;
261 }
262 }
263 return false;
264 }
265 }
DataRelationCollection ParentRelations
Definition DataTable.cs:572