コード例 #1
0
ファイル: IniSection.cs プロジェクト: kangbudz/Martini
 protected bool Equals(IniSection other)
 {
     return
         (!ReferenceEquals(other, null) &&
          Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase));
 }
コード例 #2
0
ファイル: IniSection.cs プロジェクト: he-dev/Martini
 protected bool Equals(IniSection other)
 {
     return
         !ReferenceEquals(other, null) &&
         Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase);
 }