pt.sapo.gis.trace.Entry.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( Entry e ) : bool
e Entry
리턴 bool
        public bool Equals(Entry e)
        {
            return
                Type == e.Type &&
                Description == e.Description &&
                Offset == e.Offset &&
                Duration == e.Duration &&
                Entries.Intersect(e.Entries).Count() == Entries.Count &&
                Properties.Intersect(e.Properties).Count() == Properties.Count;
        }
                

Same methods

Entry::Equals ( object obj ) : bool