コード例 #1
0
 /// <inheritdoc />
 public bool Equals(StaticTypeSubstitution other)
 {
     return(replacements == other.replacements || GenericCollectionUtils.KeyValuePairsEqual(replacements, other.replacements));
 }
コード例 #2
0
ファイル: Marker.cs プロジェクト: soelske/mbunit-v3
 /// <inheritdoc />
 public bool Equals(Marker other)
 {
     return(@class == other.@class &&
            GenericCollectionUtils.KeyValuePairsEqual(attributes, other.attributes));
 }