InsertExcludedNamespace() private method

private InsertExcludedNamespace ( String nspace ) : void
nspace String
return void
コード例 #1
0
ファイル: InputScopeManager.cs プロジェクト: zouql/runtime
 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]);
     }
 }