Browse Source

mini-commit

Никита Кашлач 3 năm trước cách đây
mục cha
commit
ae6aed626e
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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];