RegExpose.Nodes.Parens.ParenCapture.Equals C# (CSharp) Method

Equals() public method

public Equals ( ParenCapture other ) : bool
other ParenCapture
return bool
        public bool Equals(ParenCapture other)
        {
            return _number == other._number && _index == other._index && string.Equals(_value, other._value);
        }

Same methods

ParenCapture::Equals ( object obj ) : bool