public static ZbiorNapisow operator *(ZbiorNapisow a, ZbiorNapisow b) { ZbiorNapisow c = new ZbiorNapisow(); foreach (string s in a.napisy) { if (b.CzyElementNalezy(s)) { c.DodajElement(s); } } return c; }
public static ZbiorNapisow operator +(ZbiorNapisow a, ZbiorNapisow b) { ZbiorNapisow c = new ZbiorNapisow(); foreach (string s in a.napisy) { c.DodajElement(s); } foreach (string s in b.napisy) { c.DodajElement(s); } return c; }