AFObject.Inequality Operator
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
The inequality operator (!=) compares its operands to determine if they are not equal.
Namespace: OSIsoft.AF
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public static bool operator !=( AFObject lhs, AFObject rhs )
Public Shared Operator <> ( lhs As AFObject, rhs As AFObject ) As Boolean Dim lhs As AFObject Dim rhs As AFObject Dim returnValue As Boolean returnValue = (lhs <> rhs)
public: static bool operator !=( AFObject^ lhs, AFObject^ rhs )
static let inline (<>) lhs : AFObject * rhs : AFObject : bool
Parameters
- lhs
- Type: OSIsoft.AFAFObject
Left hand operator. - rhs
- Type: OSIsoft.AFAFObject
Right hand operator.
Return Value
Type: BooleanReturns if its operands are equal, otherwise.
Remarks
This method will indicate whether the specified object of the same type is not equal to the
current object. See the documentation for the
IEquatable<T>.Equals method for more information
about this operator.