|  | VertexPositionInequality Operator | 
            Compares two objects to determine whether they are different. 
            
 
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
 Syntax
Syntaxpublic static bool operator !=(
	VertexPosition left,
	VertexPosition right
)
Public Shared Operator <> ( 
	left As VertexPosition,
	right As VertexPosition
) As Boolean
public:
static bool operator !=(
	VertexPosition left, 
	VertexPosition right
)
static let inline (<>)
        left : VertexPosition * 
        right : VertexPosition  : boolParameters
- left
- Type: DigitalRune.GraphicsVertexPosition
 Object to the left of the inequality operator.
- right
- Type: DigitalRune.GraphicsVertexPosition
 Object to the right of the inequality operator.
Return Value
Type: 
Boolean if the objects are different; 
 otherwise. 
            
 See Also
See Also