Ejemplo n.º 1
0
Archivo: RdSet.cs Proyecto: yvvan/rd
 public bool IsSubsetOf(IEnumerable <T> other) => mySet.IsSubsetOf(other);
Ejemplo n.º 2
0
 public bool IsSubsetOf(IEnumerable <T> other)
 {
     return(myBackingSet.IsSubsetOf(other));
 }