Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            SquareMatrix<int> squareMatrix = new SquareMatrix<int>(new int[2,2]);
            Informator informator = new Informator(squareMatrix);

            squareMatrix.ChangeElement(2, 3);
        }