2 writes to _children
PresentationFramework (2)
MS\Internal\Globalization\BamlTreeNode.cs (2)
191
_children
= new List<BamlTreeNode>();
239
_children
= value;
7 references to _children
PresentationFramework (7)
MS\Internal\Globalization\BamlTreeNode.cs (7)
189
if (
_children
== null)
194
_children
.Add(child); // Add the children
235
return
_children
;
492
if (
_children
== null)
499
for (int i = 0; i <
_children
.Count; i++)
501
if (
_children
[i].NodeType == BamlNodeType.Property)
507
_children
.Insert(lastProperty, child);