Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

FrameworkName::Inequality Operator (FrameworkName^, FrameworkName^)

.NET Framework (current version)
 

Returns a value that indicates whether two FrameworkName objects represent different .NET Framework versions.

Namespace:   System.Runtime.Versioning
Assembly:  System (in System.dll)

public:
static bool operator !=(
	FrameworkName^ left,
	FrameworkName^ right
)

Parameters

left
Type: System.Runtime.Versioning::FrameworkName^

The first object to compare.

right
Type: System.Runtime.Versioning::FrameworkName^

The second object to compare.

Return Value

Type: System::Boolean

true if the left and right parameters represent different .NET Framework versions; otherwise, false.

The Inequality method defines the operation of the inequality operator for FrameworkName objects.

Languages that do not support custom operators can test for inequality by calling the FrameworkName::Equals(FrameworkName^) method and reversing its value.

The following example uses the equality operator to determine whether a FrameworkName object that represents the running version of the .NET Framework is equal to a supported version of the .NET Framework. Note that the two versions are not equal because they do not have identical version numbers.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 10
.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft