Microsoft.Scripting.ScopeVariableIgnoreCase.DeleteValue C# (CSharp) Méthode

DeleteValue() public méthode

Removes the current value from the scope.
public DeleteValue ( ) : bool
Résultat bool
        public bool DeleteValue() {
            bool res = _firstVariable.DeleteValue();
            if (_overflow != null) {
                lock (_overflow) {
                    foreach (var entry in _overflow) {
                        res = entry.Value.DeleteValue() || res;
                    }
                }
            }
            return res;
        }