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

Equals() public méthode

public Equals ( StrongName2 target ) : bool
target StrongName2
Résultat bool
        public bool Equals(StrongName2 target)
        {
            if (!target.IsSubsetOf(this))
                return false;
            if (!this.IsSubsetOf(target))
                return false;
            return true;
        }
    }