System.Collections.Specialized.BitVector32
namespace System.Collections.Specialized
{
public struct BitVector32
{
public struct Section
{
public short Mask { get; }
public short Offset { get; }
public bool Equals(Section obj);
public static bool operator ==(Section a, Section b);
public static bool operator !=(Section a, Section b);
public static string ToString(Section value);
}
public int Data { get; }
public int this[Section section] { get; set; }
public bool this[int bit] { get; set; }
public BitVector32(BitVector32 value);
public BitVector32(int data);
public static int CreateMask();
public static int CreateMask(int previous);
public static Section CreateSection(short maxValue);
public static Section CreateSection(short maxValue, Section previous);
public static string ToString(BitVector32 value);
}
}