System.Security.Permissions.StrongName2.Intersect C# (CSharp) Méthode

Intersect() public méthode

public Intersect ( StrongName2 target ) : StrongName2
target StrongName2
Résultat StrongName2
        public StrongName2 Intersect(StrongName2 target)
        {
            if (target.IsSubsetOf( this ))
                return target.Copy();
            else if (this.IsSubsetOf( target ))
                return this.Copy();
            else
                return null;
        }