InsertExcludedNamespace() 개인적인 메소드

private InsertExcludedNamespace ( String nspace ) : void
nspace String
리턴 void
예제 #1
0
 internal void InsertExcludedNamespaces(string[] nsList)
 {
     Debug.Assert(_scopeStack != null, "PushScope wasn't called");
     Debug.Assert(nsList != null);
     for (int idx = 0; idx < nsList.Length; idx++)
     {
         _scopeStack.InsertExcludedNamespace(nsList[idx]);
     }
 }