protected bool Equals(SongSlideList other)
 {
     if (Count != other.Count)
     {
         return(false);
     }
     for (var i = 0; i < Count; i++)
     {
         if (!Equals(this[i], other[i]))
         {
             return(false);
         }
     }
     return(true);
 }
Example #2
0
 /// <summary>
 ///     Part constructor
 /// </summary>
 public SongPart()
 {
     Slides = new SongSlideList();
 }