1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-04 06:13:36 +02:00

added a simple GetChildren too

This commit is contained in:
Ellpeck 2019-08-18 18:34:15 +02:00
parent ef677ae441
commit ff5f1a5b84

View file

@ -136,6 +136,10 @@ namespace Demos {
// Below are some querying examples that help you find certain elements easily
var children = root.GetChildren();
var totalChildren = root.GetChildren(regardChildrensChildren: true);
Console.WriteLine($"The root has {children.Count()} children, but there are {totalChildren.Count()} when regarding children's children");
var textFields = root.GetChildren<TextField>();
Console.WriteLine($"The root has {textFields.Count()} text fields");