/// <summary> /// Initializes a new instance of the <see cref="ExportHelper" /> class. /// </summary> /// <param name="resultsReader">The result reader that is using this helper.</param> public ExportHelper(ResultsReaderJson resultsReader) { this.resultsReader = resultsReader; // Initial value must be true so that // the first row is treated as the start of a new set. this.LastRow = true; }