Example #1
0
        public void DeleteRowExample()
        {
            var matrix = new ObjectMatrix <int>(4, 5);

            // Delete the second column from the matrix
            matrix.DeleteColumn(2);

            // Only 4 columns left...
            Assert.AreEqual(matrix.Columns, 4);
        }
        public void DeleteRowExample()
        {
            var matrix = new ObjectMatrix<int>(4, 5);

            // Delete the second column from the matrix
            matrix.DeleteColumn(2);

            // Only 4 columns left...
            Assert.AreEqual(matrix.Columns, 4);
        }