2 writes to _children
PresentationFramework (2)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (2)
198
_children
= new List<BamlTreeNode>();
246
_children
= value;
7 references to _children
PresentationFramework (7)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (7)
196
if (
_children
== null)
201
_children
.Add(child); // Add the children
242
return
_children
;
500
if (
_children
== null)
507
for (int i = 0; i <
_children
.Count; i++)
509
if (
_children
[i].NodeType == BamlNodeType.Property)
515
_children
.Insert(lastProperty, child);