Clear() public method

public Clear ( ) : void
return void
Ejemplo n.º 1
0
 public override void Clear(ref DictionaryStorage storage)
 {
     _storage.Clear(ref storage);
     foreach (var item in GetExtraItems())
     {
         TryRemoveExtraValue(item.Key);
     }
 }
Ejemplo n.º 2
0
 public override void Clear()
 {
     _storage.Clear();
     foreach (var item in GetExtraItems())
     {
         TryRemoveExtraValue(item.Key);
     }
 }
Ejemplo n.º 3
0
        public override void Clear(ref DictionaryStorage storage)
        {
            foreach (var x in GetItems())
            {
                string key = x.Key as string;
                if (key != null)
                {
                    Environment.SetEnvironmentVariable(key, string.Empty);
                }
            }

            _storage.Clear(ref storage);
        }
 public override void Clear(ref DictionaryStorage storage)
 {
     _data = new Dictionary <object, object>();
     _hidden.Clear();
 }
Ejemplo n.º 5
0
 public override void Clear(ref DictionaryStorage storage)
 {
     _data = new SymbolDictionary();
     _hidden.Clear();
 }
Ejemplo n.º 6
0
 public void clear()
 {
     _items.Clear();
 }
Ejemplo n.º 7
0
 public override void Clear()
 {
     _data = new SymbolDictionary();
     _hidden.Clear();
 }