Microsoft.CSharp.RuntimeBinder.Semantics.GlobalSymbolContext.GetNameManager C# (CSharp) Method

GetNameManager() public method

public GetNameManager ( ) : NameManager
return Microsoft.CSharp.RuntimeBinder.Syntax.NameManager
        public NameManager GetNameManager() { return _nameManager; }
        public PredefinedTypes GetPredefTypes() { return _predefTypes; }

Usage Example

Example #1
0
 public SymbolLoader(
     GlobalSymbolContext globalSymbols,
     UserStringBuilder userStringBuilder,
     ErrorHandling errorContext
 )
 {
     _nameManager = globalSymbols.GetNameManager();
     PredefinedMembers = new PredefinedMembers(this);
     ErrorContext = errorContext;
     GlobalSymbolContext = globalSymbols;
     Debug.Assert(GlobalSymbolContext != null);
 }