System.Reflection.Emit.ScopeTree.AddUsingNamespaceToCurrentScope C# (CSharp) Метод

AddUsingNamespaceToCurrentScope() приватный Метод

private AddUsingNamespaceToCurrentScope ( String strNamespace ) : void
strNamespace String
Результат void
        internal void AddUsingNamespaceToCurrentScope(
            String          strNamespace)
        {
            int         i = GetCurrentActiveScopeIndex();
            if (m_localSymInfos[i] == null)
            {
                m_localSymInfos[i] = new LocalSymInfo();
            }
            m_localSymInfos[i].AddUsingNamespace(strNamespace);
        }