Clear() 공개 메소드

public Clear ( ) : void
리턴 void
예제 #1
0
 public override void Clear(ref DictionaryStorage storage)
 {
     _storage.Clear(ref storage);
     foreach (var item in GetExtraItems())
     {
         TryRemoveExtraValue(item.Key);
     }
 }
예제 #2
0
 public override void Clear()
 {
     _storage.Clear();
     foreach (var item in GetExtraItems())
     {
         TryRemoveExtraValue(item.Key);
     }
 }
예제 #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();
 }
예제 #5
0
 public override void Clear(ref DictionaryStorage storage)
 {
     _data = new SymbolDictionary();
     _hidden.Clear();
 }
예제 #6
0
파일: Set.cs 프로젝트: rudimk/dlr-dotnet
 public void clear()
 {
     _items.Clear();
 }
예제 #7
0
 public override void Clear()
 {
     _data = new SymbolDictionary();
     _hidden.Clear();
 }