Search results for query: *

  1. S

    How to manipulate BitArrays

    Thank you so much. You are right, I am defensive without realizing that I do that. Thanks for clarification, and thank you so much for taking the time to explain the topic. As you know some forums are a bit stringent on what people ask, and the format and whether they have researched the topic...
  2. S

    How to manipulate BitArrays

    I am reading the C# via CLR book by Jeff Richer. On page 622 he has the following code: [Serializable] public class Dictionary<TKey, TValue>: ISerializable, IDeserializationCallback { // Private fields go here (not shown) private SerializationInfo m_siInfo; // Only used for deserialization //...
  3. S

    How to manipulate BitArrays

    This is my first post here. I am trying to learn C#, and have no development experience. I found the code below and can not follow what is going on in the sections I have labeled. class BitArray { int[] bits; int length; public BitArray(int length) { if (length < 0) throw...
Back
Top Bottom