Beispiel #1
0
 protected bool Equals(IniSection other)
 {
     return
         (!ReferenceEquals(other, null) &&
          Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase));
 }
Beispiel #2
0
 protected bool Equals(IniSection other)
 {
     return
         !ReferenceEquals(other, null) &&
         Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase);
 }