MONI.Data.WorkItem.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( object obj ) : bool
obj object
리턴 bool
        public override bool Equals(object obj)
        {
            WorkItem ti = obj as WorkItem;
            if (ti != null)
            {
                return Equals(this.Start, ti.Start) && Equals(this.End, ti.End) && Equals(this.Project, ti.Project) && Equals(this.Position, ti.Position) && Equals(this.Description, ti.Description);
            }
            return false;
        }