Boo.Lang.Compiler.TypeSystem.SimpleNamespace.SimpleNamespace C# (CSharp) 메소드

SimpleNamespace() 공개 메소드

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