TreeSharp.GroupComposite.GroupComposite C# (CSharp) Method

GroupComposite() protected method

protected GroupComposite ( ) : System.Collections.Generic
return System.Collections.Generic
        protected GroupComposite(params Composite[] children)
        {
            Children = new List<Composite>(children);

            foreach (Composite composite in Children)
            {
                if (composite != null)
                {
                    composite.Parent = this;
                }
            }
        }