C# HybridDictionary IsFixedSize
Description
HybridDictionary IsFixedSize
gets a value indicating
whether the HybridDictionary has a fixed size.
Syntax
HybridDictionary.IsFixedSize
has the following syntax.
public bool IsFixedSize { get; }
Example
using System;//w w w. j av a 2s . com
using System.Collections;
using System.Collections.Specialized;
public class SamplesHybridDictionary {
public static void Main() {
HybridDictionary myCol = new HybridDictionary();
myCol.Add( "C", "1.29" );
myCol.Add( "D", "0.89" );
myCol.Add( "E", "0.99" );
Console.WriteLine(myCol.IsFixedSize );
}
}
The code above generates the following result.