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