コード例 #1
0
ファイル: Match.cs プロジェクト: richardpianka/Transit
 public bool Equals(Match other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.Device.EqualsIgnoreCase(Device) && Equals(other.ShapeId, ShapeId) && Equals(other.Points, Points);
 }
コード例 #2
0
 public MatchCollection SetInclusion(Match match, bool include)
 {
     InclusionMap[match] = include;
     return this;
 }