예제 #1
0
 private void BoundByChild(string nm)
 {
     boundInChildScope.Add(nm);
     if (parent != null)
     {
         parent.BoundByChild(nm);
     }
 }