Defines the == operator for vector.
            
            
            
            
            
            
            
            '宣言
 
Public Operator <>( _
   ByVal  As Vector, _
   ByVal  As Vector _
) As System.Boolean
             
        
            
            public System.bool operator !=( 
   Vector ,
   Vector 
)
             
        
             
        
            パラメータ
- left
 
- A Vector indicates the left operand.
 - right
 
- A Vector indicates the right operand.
 
            
            戻り値の型
A bool indicates whether left dose not equals right.