wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 23  →  ?path2? @ 22
/Collections/Specialized/ObservableHashSet.cs
@@ -19,7 +19,7 @@
/// An implementation of an observable HashSet.
/// </summary>
/// <typeparam name="T">the object type</typeparam>
public class ObservableHashSet<T> : ICollection<T>, INotifyCollectionChanged, IEnumerable<T>
public class ObservableHashSet<T> : ICollection<T>, INotifyCollectionChanged
{
private readonly HashSet<T> store = new HashSet<T>();
 
@@ -132,10 +132,5 @@
removed));
IsVirgin = false;
}
 
public IEnumerable<T> AsEnumerable()
{
return store.AsEnumerable();
}
}
}