Beispiel #1
0
 public void Merge(ListStyle style)
 {
     if(style == null)
     {
         throw new ArgumentNullException("style");
     }
     if (!string.IsNullOrEmpty(style?.Bullet) && Bullet != style.Bullet)
     {
         Bullet = style.Bullet;
     }
     base.Merge(style);
 }
 public void Merge(ListStyle style)
 {
     if (style == null)
     {
         throw new ArgumentNullException("style");
     }
     if (!string.IsNullOrEmpty(style?.Bullet) && Bullet != style.Bullet)
     {
         Bullet = style.Bullet;
     }
     base.Merge(style);
 }