Can I split and merge PDF using PDFNet?

Q: Can I split and merge PDF using PDFNet?
I can't find the API in "PDFNet SDK for .NET" for PDF splitting /
merging.
-----

A: PDFNet SDK (www.pdftron.com/net) does include functions to split
and merge PDF documents. As a starting point you may want to take a
look at PDFPage sample project (http://www.pdftron.com/net/
samplecode.html#PDFPage).

Both split and merge operations can be reduced to copying pages from
one PDF document to another (e.g. using pdfdoc.ImportPages()/
PageBushBack()/PagePushFront()) or by removing pages from an existing
document (pdfdoc.PageRemove()).

The above functions are generic enough to implement any type of split
and merge operation, however in case you are looking for a specialized
tool for PDF splitting and merging you may also want to take a look at
PDF PageMaster SDK or Command-Line Utility (http://www.pdftron.com/
pagemaster).