OpenStory.Common.IO.Flags.Flags C# (CSharp) Method

Flags() protected method

Initializes a new instance of the Flags class.
Thrown if is .
protected Flags ( Flags other ) : System
other Flags The instance to copy from.
return System
        protected Flags(Flags other)
        {
            Guard.NotNull(() => other, other);

            this.Bits = new BitArray(other.Bits);
        }

Same methods

Flags::Flags ( int capacity ) : System