Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんなセットもあります
ISet<Declaration> set = new HashSet<Declaration>();
宣言クラスはライブラリの外部クラスであり、equals メソッドがないため、これを行うと..
set.Add(dec); set.Add(dec1);
... dec と dec1 は「equals」ですが、私のセットはそれらの両方を追加するので、ISet に equals メソッドを設定する方法はありますか?
ありがとう!