Microsoft.Scripting.ScopeStorage.GetScopeVariable C# (CSharp) Method

GetScopeVariable() public method

Gets the IScopeVariable for the scope optionally ignoring case. The IScopeVariable can be held onto and get/set/deleted without performing a dictionary lookup on subsequent accesses.
public GetScopeVariable ( string name, bool ignoreCase ) : IScopeVariable
name string
ignoreCase bool
return IScopeVariable
        public IScopeVariable GetScopeVariable(string name, bool ignoreCase) {
            if (ignoreCase) {
                return GetScopeVariableIgnoreCase(name);
            }
            return GetScopeVariable(name);
        }

Same methods

ScopeStorage::GetScopeVariable ( string name ) : ScopeVariable