Aqueduct.Utils.CSVService.WriteLineInternal C# (CSharp) Method

WriteLineInternal() protected static method

protected static WriteLineInternal ( TextWriter writer, string>.IDictionary keyValues, bool writeHeader ) : void
writer System.IO.TextWriter
keyValues string>.IDictionary
writeHeader bool
return void
        protected static void WriteLineInternal(TextWriter writer, IDictionary<string, string> keyValues, bool writeHeader)
        {
            if (writeHeader)
                writer.WriteLine(CreateCSVLine(keyValues.Keys));
            writer.WriteLine(CreateCSVLine(keyValues.Values));
        }
    }