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