コード例 #1
0
        public bool Equals(GeographyFullGlobe other)
        {
            bool?nullable = base.BaseEquals(other);

            return(!nullable.HasValue || nullable.GetValueOrDefault());
        }
コード例 #2
0
ファイル: GeographyFullGlobe.cs プロジェクト: tapika/swupd
 public bool Equals(GeographyFullGlobe other)
 {
     return(this.BaseEquals(other) ?? true);
 }
コード例 #3
0
ファイル: GeographyFullGlobe.cs プロジェクト: nickchal/pash
 public bool Equals(GeographyFullGlobe other)
 {
     bool? nullable = base.BaseEquals(other);
     return (!nullable.HasValue || nullable.GetValueOrDefault());
 }