OSPlatform.Equality(OSPlatform, OSPlatform) Operator

Definition

Determines whether two OSPlatform objects are equal.

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

Parameters

left
OSPlatform

The first object to compare.

right
OSPlatform

The second object to compare.

Returns

true if left and right are equal; otherwise, false.

Remarks

Two OSPlatform instances are equal if they have the same name. The name of an OSPlatform object is the osPlatform string passed to the Create method. The names of the OSPlatform objects returned by the static OSPlatform properties are "FREEBSD", "LINUX", "OSX", and "WINDOWS". The method uses ordinal comparison to determine whether the names are the same.

Applies to