コード例 #1
0
ファイル: ParenCapture.cs プロジェクト: devkhan/RegExpose
 public bool Equals(ParenCapture other)
 {
     return(_number == other._number && _index == other._index && string.Equals(_value, other._value));
 }
コード例 #2
0
 public void AddCapture(ParenCapture capture)
 {
     _captures.Add(capture);
 }
コード例 #3
0
 public void RemoveCapture(ParenCapture capture)
 {
     _captures.Remove(capture);
 }
コード例 #4
0
 public bool Equals(ParenCapture other)
 {
     return _number == other._number && _index == other._index && string.Equals(_value, other._value);
 }