PolicyStatement.Equals(Object) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si l'objet PolicyStatement spécifié est égal à PolicyStatement en cours.
public:
override bool Equals(System::Object ^ o);
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object o);
[System.Runtime.InteropServices.ComVisible(false)]
public override bool Equals (object obj);
override this.Equals : obj -> bool
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean
Public Overrides Function Equals (obj As Object) As Boolean
Paramètres
- oobj
- Object
Objet PolicyStatement à comparer au PolicyStatement actuel.
Retours
true
si le PolicyStatement spécifié est égal à l’objet PolicyStatement actuel ; sinon, false
.
- Attributs
Exemples
L’exemple de code suivant montre comment utiliser la Equals méthode pour déterminer si un objet spécifié PolicyStatement est équivalent à l’objet actuel PolicyStatement . Cet exemple de code fait partie d’un exemple plus grand fourni pour la PolicyStatement classe .
if ( !policyStatementCopy->Equals( policyStatement ) )
if (!policyStatementCopy.Equals(policyStatement))
If (Not policyStatementCopy.Equals(policyStatement)) Then
Remarques
Pour plus d'informations, voir la méthode Equals.