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

Equals() public method

public Equals ( 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;
        }
    }