Inheritance: IAnnotation
コード例 #1
0
ファイル: AnnotationBase.cs プロジェクト: CaseyTea/Rubberduck
 public bool Equals(AnnotationBase other)
 {
     return(other != null &&
            Name.Equals(other.Name));
 }
コード例 #2
0
 public bool Equals(AnnotationBase other) => other != null && Name.Equals(other.Name);