예제 #1
0
 private bool Equals(Case other) => string.Equals(ParameterName, other?.ParameterName) &&
 // ReSharper disable once PossibleNullReferenceException
 CriteriaAnalysis.Equivalent(other.CriteriaAnalysis);
예제 #2
0
 private bool Equals(Case other) => other != null &&
 TestedParameter.Equals(other.TestedParameter) &&
 // ReSharper disable once PossibleNullReferenceException
 CriteriaAnalysis.Equivalent(other.CriteriaAnalysis);