PooledHashSet(Of T) with different equality check. #49570
Answered
by
CyrusNajmabadi
AdamSpeight2008
asked this question in
Q&A
-
Is there a way to specify how a |
Beta Was this translation helpful? Give feedback.
Answered by
CyrusNajmabadi
Nov 23, 2020
Replies: 1 comment
-
Yes. Call |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AdamSpeight2008
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. Call
public static ObjectPool<PooledHashSet<T>> CreatePool(IEqualityComparer<T> equalityComparer)
to create a pool wit that comparer. Then retrieve/return instances to that pool.