Example #1
0
 public void UnionWithTest()
 {
     set.Add(9);
     set.UnionWith(list);
     Assert.IsTrue(set.Contains(6));
 }