public BitFieldData(BitFieldData other) { if (other == null) { throw new ArgumentNullException(nameof(other)); } Data = (uint[])other.Data.Clone(); Length = other.Length; TrueCount = other.TrueCount; }
internal static ReadOnlyBitField From(BitFieldData data) => new ReadOnlyBitField(data);