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.
ReadOnlyCollection<T>読み取り操作のみをサポートします。なぜキーワードTでマークされていないのですか?out
ReadOnlyCollection<T>
T
out
ReadOnlyCollectionは読み取り操作のみをサポートします
は一般的な読み取り専用コレクションの基本クラスであるため、読み取りのみをサポートします。
Tがoutキーワードでマークされていないのはなぜですか?
outキーワードは、パラメーターが共変であり、インターフェースとデリゲートのみが共変である可能性があることを示します。ReadOnlyCollection<T>共変であるを実装することに注意してくださいIEnumerable<T>。
IEnumerable<T>