System.Security.Permissions.StrongName2.Intersect C# (CSharp) Method

Intersect() public method

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