Outputs a comma-separated-value format, one line per feature: urn,feature,{feature details} The idea is to be able to consume this directly in Excel and do whatever filtering, reporting, etc on it
Inheritance: Report
Example #1
0
 /// <summary>
 /// Self-explanatory
 /// </summary>
 /// <param name="arg"></param>
 /// <returns></returns>
 private bool HandleCsvFile(string arg)
 {
     if (!arg.Equals(csvFile))
     {
         return(false);
     }
     if (Report != null)
     {
         throw new ArgumentException("Multiple reports requested, this is not allowed.");
     }
     ExpectReadyForNewState(arg);
     Report     = new CSVReport();
     ParseState = ProcessorState.Default;
     return(true);
 }
 /// <summary>
 /// Self-explanatory
 /// </summary>
 /// <param name="arg"></param>
 /// <returns></returns>
 private bool HandleCsvFile(string arg)
 {
     if (!arg.Equals(csvFile))
         return false;
     if (Report != null)
         throw new ArgumentException("Multiple reports requested, this is not allowed.");
     ExpectReadyForNewState(arg);
     Report = new CSVReport();
     ParseState = ProcessorState.Default;
     return true;
 }