| GeometryObjectInequality Operator | 
Determines whether two GeometryObjects are different.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
 Syntax
Syntaxpublic static bool operator !=(
	GeometryObject first,
	GeometryObject second
)
Public Shared Operator <> ( 
	first As GeometryObject,
	second As GeometryObject
) As Boolean
public:
static bool operator !=(
	GeometryObject^ first, 
	GeometryObject^ second
)
static let inline (<>)
        first : GeometryObject * 
        second : GeometryObject  : boolParameters
- first  GeometryObject
- The first GeometryObject.
- second  GeometryObject
- The second GeometryObject.
Return Value
BooleanTrue if the GeometryObjects are different; otherwise, false.
 Remarks
RemarksThis compares the internal identifiers of the geometry, and doesn't compare them geometrically.
 See Also
See Also