Example #1
0
 protected bool Equals(CustomApplicationBackground other)
 {
     if (other.BackgroundPath == null && BackgroundPath == null)
     {
         return(true);
     }
     return(string.Equals(BackgroundPath, other.BackgroundPath));
 }
 protected bool Equals(CustomApplicationBackground other)
 {
     if (other.BackgroundPath == null && BackgroundPath == null) return true;
     return string.Equals(BackgroundPath, other.BackgroundPath);
 }