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