HybridDictionary.IsFixedSize Property
Gets a value indicating whether the HybridDictionary has a fixed size.
[Visual Basic] Public Overridable ReadOnly Property IsFixedSize As Boolean _ Implements IDictionary.IsFixedSize [C#] public virtual bool IsFixedSize {get;} [C++] public: __property virtual bool get_IsFixedSize(); [JScript] public function get IsFixedSize() : Boolean;
Property Value
This property always returns false.
Implements
Remarks
HybridDictionary implements the IsFixedSize property because it is required by the System.Collections.IDictionary interface.
A collection with a fixed size does not allow the addition or removal of elements after the collection is created, but it allows the modification of existing elements.
A collection with a fixed size is simply a collection with a wrapper that prevents adding and removing elements; therefore, if changes are made to the underlying collection, including the addition or removal of elements, the fixed-size collection reflects those changes.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
HybridDictionary Class | HybridDictionary Members | System.Collections.Specialized Namespace