実現したいこと
HashSet を ReadOnlyCollectionで返すメソッドはどのように実装すべきでしょうか。
発生している問題・分からないこと
Listを読み取り専用形式で取得するReadOnlyCollectionをHashSetでも使用したいのですが下記のようにコンパイルエラーが発生してしまいます。
HashSetでReadOnlyCollectionを用いるにはどうすればよいでしょうか?
エラーメッセージ
error
1コンパイルエラーメッセージ:シンボルAsReadOnlyを解決できません
該当のソースコード
C#
1private List<int> intList = new List<int>(); 2 3 public ReadOnlyCollection<int> GetIntList() 4 { 5 return intList.AsReadOnly(); 6 } 7 8 private HashSet<int> intHashSet = new HashSet<int>(); 9 10 public ReadOnlyCollection<int> GetHashSet() 11 { 12 return intHashSet.AsReadOnly(); 13 } 14
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
解決方法が見つかりませんでした
補足
特になし
Lsit 経由か配列経由では何か問題があるのでしょうか?
using System.Linq;
return intHashSet.ToList().AsReadOnly();
return new ReadOnlyCollection<int>(intHashSet.ToArray());
渡す時はHashSetではなくListにキャストして渡すということでしょうか。
用途としてはそちらで十分なのですが、元がHashSetなのでできればHashSetで渡したいのと、同じCollectionなのになぜHashSetにはAsReadOnlyが無いのか気になります
@Iehshell `ReadOnlyCollection<T>` は 生の List<T> インスタンスに 読み取り専用 インターフェスだけの wrapper を生やすクラスな為、`ReadOnlyCollection<T>` の List<T> への変更に追従する の利点が完全に死ぬ為 あまりよくないのでは?感あります。