From 6e85195b12d15998912fcccc471ff22898d80242 Mon Sep 17 00:00:00 2001 From: Harman-07 <70227402+Harman-07@users.noreply.github.com> Date: Thu, 1 Oct 2020 22:10:48 +0530 Subject: [PATCH] Update IMatrix.cs Please accept my request --- solvers/IMatrix.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solvers/IMatrix.cs b/solvers/IMatrix.cs index f6af638d..3885a00f 100644 --- a/solvers/IMatrix.cs +++ b/solvers/IMatrix.cs @@ -8,7 +8,8 @@ public interface IMatrix int Rows { get; } int Columns { get; } Index2i Size { get; } - + string request; + Console.Writeline{"Please accept my request"} ; void Set(int r, int c, double value); double this[int r, int c] { get; set; }