HashSet<T>.ICollection<T>.IsReadOnly 속성
정의
컬렉션이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.Gets a value indicating whether a collection is read-only.
property bool System::Collections::Generic::ICollection<T>::IsReadOnly { bool get(); };
bool System.Collections.Generic.ICollection<T>.IsReadOnly { get; }
ReadOnly Property IsReadOnly As Boolean Implements ICollection(Of T).IsReadOnly
속성 값
컬렉션이 읽기 전용이면 true
이고, 그렇지 않으면 false
입니다.true
if the collection is read-only; otherwise, false
.
구현
설명
이 속성 값을 검색하는 것은 O(1) 연산입니다.Retrieving the value of this property is an O(1) operation.