writeIndex() public method

This method writes the VTD+XML into an output streams
public writeIndex ( System os ) : void
os System ///
return void
Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     try
     {
         VTDGen vg = new VTDGen();
         if (vg.parseFile("po.xml", true))
         {
             vg.writeIndex("po.vxl");
         }
     }
     catch (Exception e)
     {
     }
 }