public void DeleteColumnExample() { var matrix = new ObjectMatrix <int>(4, 5); // Delete the second row from the matrix matrix.DeleteRow(2); // Only 3 rows left... Assert.AreEqual(matrix.Rows, 3); }
public void DeleteColumnExample() { var matrix = new ObjectMatrix<int>(4, 5); // Delete the second row from the matrix matrix.DeleteRow(2); // Only 3 rows left... Assert.AreEqual(matrix.Rows, 3); }