Defines the * operator for vector.
            
            
            
            
            
            
            
            '宣言
 
Public Operator *( _
   ByVal  As Vector(Of T), _
   ByVal  As Vector(Of T) _
) As Vector(Of T)
             
        
            
            public Vector<T> operator *( 
   Vector<T> ,
   Vector<T> 
)
             
        
             
        
            パラメータ
- left
 
- A Vector indicates the left operand.
 - right
 
- A Vector indicates the right operand.
 
            
            戻り値の型
A Vector that is the multiplying result of the left and right operands.