IPod.Track.Equals C# (CSharp) Method

Equals() public method

public Equals ( object a ) : bool
a object
return bool
        public override bool Equals(object a)
        {
            Track song = a as Track;

            if (song == null)
                return false;

            return this.Id == song.Id;
        }