소스 검색

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];