コード例 #1
0
ファイル: RegexKey.cs プロジェクト: yusufozturk/pcre-net
 public bool Equals(RegexKey other)
 => Pattern == other.Pattern &&
 Settings.CompareValues(other.Settings);
コード例 #2
0
 public bool Equals(RegexKey other)
 {
     return(Pattern == other.Pattern && Settings.CompareValues(other.Settings));
 }