예제 #1
0
파일: ExcelName.cs 프로젝트: MDhondt/NoruST
 public bool Equals(ExcelName <T> other)
 {
     return(other != null && Name == other.Name);
 }
예제 #2
0
파일: ExcelName.cs 프로젝트: MDhondt/NoruST
 public int CompareTo(ExcelName <T> other)
 {
     return(ReferenceEquals(other, null) ? 1 : string.CompareOrdinal(Name.Name, other.Name.Name));
 }