.NET Matrix Library
Equals Method
See Also  Send Feedback



obj
An object to compare with this instance of the Vector class.
Returns a value indicating whether this Vector object is equal to another vector.

Syntax

Visual Basic (Declaration) 
Public Overrides Function Equals( _
   ByVal obj As Object _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Vector
Dim obj As Object
Dim value As Boolean
 
value = instance.Equals(obj)
C# 
public override bool Equals( 
   object obj
)
C++/CLI 
public:
bool Equals( 
   Object^ obj
) override 

Parameters

obj
An object to compare with this instance of the Vector class.

Return Value

true if obj is an instance of the Vector class and represents a vector that has the same length as this instance and also all the elements of obj are equal to the elements of this instance; false otherwise.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library