NSoft.NFramework.Collections.PascalSet.PascalSet C# (CSharp) Method

PascalSet() public method

Constructor for copying
public PascalSet ( PascalSet set ) : System
set PascalSet instance to copied
return System
        public PascalSet(PascalSet set) {
            set.ShouldNotBeNull("set");

            _lowerBound = set._lowerBound;
            _upperBound = set._upperBound;
            _bitData = new BitArray(set._bitData);
        }

Same methods

PascalSet::PascalSet ( char lowerBound, char upperBound ) : System
PascalSet::PascalSet ( char lowerBound, char upperBound, char elements ) : System
PascalSet::PascalSet ( int lowerBound, int upperBound ) : System
PascalSet::PascalSet ( int lowerBound, int upperBound, int elements ) : System