2 writes to _children
PresentationFramework (2)
MS\Internal\Globalization\BamlTreeNode.cs (2)
193
_children
= new List<BamlTreeNode>();
241
_children
= value;
7 references to _children
PresentationFramework (7)
MS\Internal\Globalization\BamlTreeNode.cs (7)
191
if (
_children
== null)
196
_children
.Add(child); // Add the children
237
return
_children
;
498
if (
_children
== null)
505
for (int i = 0; i <
_children
.Count; i++)
507
if (
_children
[i].NodeType == BamlNodeType.Property)
513
_children
.Insert(lastProperty, child);