IDictionary.IsFixedSize Property
When implemented by a class, gets a value indicating whether the IDictionary has a fixed size.
[Visual Basic] ReadOnly Property IsFixedSize As Boolean [C#] bool IsFixedSize {get;} [C++] __property bool get_IsFixedSize(); [JScript] function get IsFixedSize() : Boolean;
Property Value
true if the IDictionary has a fixed size; otherwise, false.
Remarks
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, Common Language Infrastructure (CLI) Standard
See Also
IDictionary Interface | IDictionary Members | System.Collections Namespace