IDataId32ExtensionAreNotEqual Method |
Test if two IDataId32 references are not equal.
Namespace: ArtDatabanken.DataAssembly: ArtDatabanken (in ArtDatabanken.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax public static bool AreNotEqual(
this IDataId32 data1,
IDataId32 data2
)
<ExtensionAttribute>
Public Shared Function AreNotEqual (
data1 As IDataId32,
data2 As IDataId32
) As Boolean
public:
[ExtensionAttribute]
static bool AreNotEqual(
IDataId32^ data1,
IDataId32^ data2
)
[<ExtensionAttribute>]
static member AreNotEqual :
data1 : IDataId32 *
data2 : IDataId32 -> bool
Parameters
- data1
- Type: ArtDatabanken.DataIDataId32
First data to compare. - data2
- Type: ArtDatabanken.DataIDataId32
Second data to compare.
Return Value
Type:
Boolean
False if both references are null or
if they have the same type and id.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDataId32. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also