浏览代码

mini-commit

Никита Кашлач 3 年之前
父节点
当前提交
ae6aed626e
共有 1 个文件被更改,包括 5 次插入0 次删除
  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];