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

SetValue() public method

Sets the named value in the scope optionally ignoring the case.
public SetValue ( string name, bool ignoreCase, object value ) : void
name string
ignoreCase bool
value object
return void
        public void SetValue(string name, bool ignoreCase, object value) {
            GetScopeVariable(name, ignoreCase).SetValue(value);
        }