// pnyx -e=documentation pncs.cmd.examples.documentation.library.ExampleInput rowPart public static void rowPart() { using (Pnyx p = new Pnyx()) { p.readRow(new CustomRowSource(p.streamInformation, 40), new CsvRowConverter()); p.head(3); p.writeStdout(); } // outputs: // 40,4/2/2013 // 39,3/26/2013 // 38,3/19/2013 }