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); }
/// <summary> /// Part constructor /// </summary> public SongPart() { Slides = new SongSlideList(); }