Пример #1
0
 protected bool Equals(TVShowPreferences other)
 {
     return(base.Equals(other) && string.Equals(Directory, other.Directory) &&
            string.Equals(FileName, other.FileName) &&
            string.Equals(SeasonNumberFormat, other.SeasonNumberFormat) &&
            string.Equals(EpisodeNumberFormat, other.EpisodeNumberFormat) &&
            string.Equals(ReleaseDateFormat, other.ReleaseDateFormat));
 }
Пример #2
0
 public void CopyFrom(TVShowPreferences other)
 {
     base.CopyFrom(other);
     Directory           = other.Directory;
     FileName            = other.FileName;
     SeasonNumberFormat  = other.SeasonNumberFormat;
     EpisodeNumberFormat = other.EpisodeNumberFormat;
     ReleaseDateFormat   = other.ReleaseDateFormat;
 }
Пример #3
0
 protected bool Equals(TVShowPreferences other)
 {
     return base.Equals(other) && string.Equals(Directory, other.Directory) &&
            string.Equals(FileName, other.FileName) &&
            string.Equals(SeasonNumberFormat, other.SeasonNumberFormat) &&
            string.Equals(EpisodeNumberFormat, other.EpisodeNumberFormat) &&
            string.Equals(ReleaseDateFormat, other.ReleaseDateFormat);
 }
Пример #4
0
 public void CopyFrom(TVShowPreferences other)
 {
     base.CopyFrom(other);
     Directory = other.Directory;
     FileName = other.FileName;
     SeasonNumberFormat = other.SeasonNumberFormat;
     EpisodeNumberFormat = other.EpisodeNumberFormat;
     ReleaseDateFormat = other.ReleaseDateFormat;
 }