OracleMonthSpan Inequality Operator
Performs a logical comparison of two instances of OracleMonthSpan to determine if they are equal.
[Visual Basic] returnValue = OracleMonthSpan.op_Inequality(x, y) [C#] public static OracleBoolean operator !=( OracleMonthSpan x, OracleMonthSpan y ); [C++] public: static OracleBoolean op_Inequality( OracleMonthSpan x, OracleMonthSpan y ); [JScript] returnValue = x != y;
[Visual Basic] In Visual Basic, you can use the operators defined by a type, but you cannot define your own. You can use the NotEquals method instead of the OracleMonthSpan inequality operator.
[JScript] In JScript, you can use the operators defined by a type, but you cannot define your own.
Arguments [Visual Basic, JScript]
- x
- An OracleMonthSpan structure.
- y
- An OracleMonthSpan structure.
Parameters [C#, C++]
- x
- An OracleMonthSpan structure.
- y
- An OracleMonthSpan structure.
Return Value
An OracleBoolean that is True if the two instances are not equal or False if the two instances are equal. If either instance of OracleMonthSpan is null, the Value of the OracleBoolean will be Null.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
OracleMonthSpan Structure | OracleMonthSpan Members | System.Data.OracleClient Namespace