Ejemplo n.º 1
0
            public LinearSystem3(int rows = 3)
            {
                var obj = new LinearLine[rows];

                this.lines = obj.Select(x => x = new LinearLine(rows)).ToArray();
            }