OSPlatform.Equality(OSPlatform, OSPlatform) Opérateur
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 deux objets OSPlatform sont identiques.
public:
static bool operator ==(System::Runtime::InteropServices::OSPlatform left, System::Runtime::InteropServices::OSPlatform right);
public static bool operator == (System.Runtime.InteropServices.OSPlatform left, System.Runtime.InteropServices.OSPlatform right);
static member ( = ) : System.Runtime.InteropServices.OSPlatform * System.Runtime.InteropServices.OSPlatform -> bool
Public Shared Operator == (left As OSPlatform, right As OSPlatform) As Boolean
Paramètres
- left
- OSPlatform
Premier objet à comparer.
- right
- OSPlatform
Deuxième objet à comparer.
Retours
true
si left
et right
sont égales ; sinon, false
.
Remarques
Deux OSPlatform instances sont égales si elles ont le même nom. Le nom d’un OSPlatform objet est la osPlatform
chaîne passée à la Create méthode . Les noms des OSPlatform objets retournés par les propriétés OSPlatform statiques sont « FREEBSD », « LINUX », « OSX » et « WINDOWS ». La méthode utilise la comparaison ordinale pour déterminer si les noms sont identiques.