We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f091f commit 72e4a19Copy full SHA for 72e4a19
src/Iesi.Collections.Test/Generic/SynchronizedSetFixture.cs
@@ -13,6 +13,7 @@ namespace Iesi.Collections.Test.Generic;
13
/// Summary description for ReadOnlySetFixture.
14
/// </summary>
15
[TestFixture]
16
+[Obsolete("SynchronizedSet is obsolete")]
17
public class SynchronizedSetFixture : GenericSetFixture
18
{
19
protected override ISet<string> CreateInstance()
src/Iesi.Collections/Generic/SynchronizedSet.cs
@@ -15,6 +15,7 @@ namespace Iesi.Collections.Generic;
#if !NETSTANDARD1_0
[Serializable]
#endif
+[Obsolete("The SynchronizedSet will be removed in a future version")]
public sealed class SynchronizedSet<T> : ISet<T>
20
#if !NET40
21
, IReadOnlyCollection<T>
0 commit comments