IsSubsetOf() public method

public IsSubsetOf ( StrongName2 target ) : bool
target StrongName2
return bool
 public bool Equals(StrongName2 target)
 {
     if (!target.IsSubsetOf(this))
         return false;
     if (!this.IsSubsetOf(target))
         return false;
     return true;
 }
 public StrongName2 Intersect(StrongName2 target)
 {
     if (target.IsSubsetOf( this ))
         return target.Copy();
     else if (this.IsSubsetOf( target ))
         return this.Copy();
     else
         return null;
 }
 public bool Equals(StrongName2 target)
 {
     if (!target.IsSubsetOf(this))
     {
         return(false);
     }
     if (!this.IsSubsetOf(target))
     {
         return(false);
     }
     return(true);
 }
 public StrongName2 Intersect(StrongName2 target)
 {
     if (target.IsSubsetOf(this))
     {
         return(target.Copy());
     }
     if (this.IsSubsetOf(target))
     {
         return(this.Copy());
     }
     return((StrongName2)null);
 }
 public bool Equals(StrongName2 target)
 {
     return(target.IsSubsetOf(this) && this.IsSubsetOf(target));
 }