Никита Кашлач před 3 roky
rodič
revize
ae6aed626e
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. 5 0
      MatrixXAMLOnly/Matrix.cs

+ 5 - 0
MatrixXAMLOnly/Matrix.cs

@@ -70,6 +70,11 @@ namespace Matrix
             }
         }
 
+        public static MyMatrix operator *(MyMatrix matrix1, MyMatrix matrix2)
+        {
+
+        }
+
         public static MyMatrix operator *(MyMatrix matrix1, double num)
         {
             double[,] array = new double[matrix1.Rows, matrix1.Columns];