Ejemplo n.º 1
0
 /// <summary>
 /// Add a package as a child of this package.
 /// This means the given package will be closed if this package is closed.
 /// </summary>
 public void AddChildPackage(PackageView p)
 {
     this.children.Add(p);
     p.SetParentPackage(this);
 }