Boo.Lang.Compiler.Steps.IntroduceGlobalNamespaces.SafeGetNamespace C# (CSharp) 메소드

SafeGetNamespace() 보호된 메소드

protected SafeGetNamespace ( string qname ) : INamespace
qname string
리턴 INamespace
        protected INamespace SafeGetNamespace(string qname)
        {
            INamespace ns = (INamespace)NameResolutionService.ResolveQualifiedName(qname);
            return null == ns ? NullNamespace.Default : ns;
        }
IntroduceGlobalNamespaces