wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 26  →  ?path2? @ 27
/Collections/Specialized/ExtendedObservableCollection.cs
@@ -40,4 +40,4 @@
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
}
}
}
}
/Collections/Specialized/MultiKeyDictionary.cs
@@ -3,7 +3,7 @@
// Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
// Based on the work of Herman Schoenfeld
// Based on the work of Herman Schoenfeld
 
using System;
using System.Collections.Generic;
@@ -280,4 +280,4 @@
this[key1].ContainsKey(key2, key3, key4, key5, key6, key7, key8, key9, key10, key11);
}
}
}
}
/Collections/Specialized/ObservableDictionary.cs
@@ -41,7 +41,7 @@
 
public void Add(KeyValuePair<K, V> item)
{
((IDictionary<K, V>) store).Add(item);
((IDictionary<K, V>)store).Add(item);
IsVirgin = false;
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, item));
}
@@ -64,7 +64,7 @@
 
public bool Contains(KeyValuePair<K, V> item)
{
return ((IDictionary<K, V>) store).Contains(item);
return ((IDictionary<K, V>)store).Contains(item);
}
 
public bool ContainsKey(K key)
@@ -74,17 +74,17 @@
 
public void CopyTo(KeyValuePair<K, V>[] array, int arrayIndex)
{
((IDictionary<K, V>) store).CopyTo(array, arrayIndex);
((IDictionary<K, V>)store).CopyTo(array, arrayIndex);
}
 
public IEnumerator<KeyValuePair<K, V>> GetEnumerator()
{
return ((IDictionary<K, V>) store).GetEnumerator();
return ((IDictionary<K, V>)store).GetEnumerator();
}
 
public bool Remove(KeyValuePair<K, V> item)
{
var removed = ((IDictionary<K, V>) store).Remove(item);
var removed = ((IDictionary<K, V>)store).Remove(item);
IsVirgin = false;
if (removed)
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, item));
@@ -111,7 +111,7 @@
 
IEnumerator IEnumerable.GetEnumerator()
{
return ((IDictionary<K, V>) store).GetEnumerator();
return ((IDictionary<K, V>)store).GetEnumerator();
}
 
public event NotifyCollectionChangedEventHandler CollectionChanged;
@@ -121,4 +121,4 @@
CollectionChanged?.Invoke(this, args);
}
}
}
}
/Collections/Specialized/ObservableHashSet.cs
@@ -138,4 +138,4 @@
return store.AsEnumerable();
}
}
}
}