Exemple #1
0
 protected bool Equals(PlayingInfo other)
 {
     return(string.Equals(Title, other.Title) && string.Equals(Artist, other.Artist) && string.Equals(Album, other.Album) && Equals(BitmapRepresentation, other.BitmapRepresentation) && IsPlaying == other.IsPlaying && DurationSpan.Equals(other.DurationSpan) && CurrentPosition.Equals(other.CurrentPosition));
 }
Exemple #2
0
 public PlayingEventArgs(PlayingInfo playingInfo)
 {
     PlayingInfo = playingInfo;
 }