Boo.Lang.Compiler.TypeSystem.SimpleNamespace.SimpleNamespace C# (CSharp) Method

SimpleNamespace() public method

public SimpleNamespace ( INamespace parent, IDictionary children ) : System
parent INamespace
children IDictionary
return System
        public SimpleNamespace(INamespace parent, IDictionary children)
        {
            if (null == children)
            {
                throw new ArgumentNullException("children");
            }
            _parent = parent;
            _children = children;
        }