C# | Compruebe si ListDictionary tiene un tamaño fijo
La propiedad ListDictionary.IsFixedSize se usa para obtener un valor que indica si ListDictionary tiene un tamaño fijo o no. Sintaxis: public bool IsFixedSize { get; } Valor devuelto: esta propiedad siempre devuelve falso . Ejemplo: // C# code to check if ListDictionary // has a fixed size using System; using System.Collections; using System.Collections.Specialized; class … Continue reading «C# | Compruebe si ListDictionary tiene un tamaño fijo»