예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CsvLayout"/> class.
 /// </summary>
 public CsvLayout()
 {
     Columns    = new List <CsvColumn>();
     WithHeader = true;
     Delimiter  = CsvColumnDelimiterMode.Auto;
     Quoting    = CsvQuotingMode.Auto;
     QuoteChar  = "\"";
     Layout     = this;
     Header     = new CsvHeaderLayout(this);
     Footer     = null;
 }
예제 #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="CsvLayout" /> class.
 /// </summary>
 public CsvLayout()
 {
     Columns = new List<CsvColumn>();
     WithHeader = true;
     Delimiter = CsvColumnDelimiterMode.Auto;
     Quoting = CsvQuotingMode.Auto;
     QuoteChar = "\"";
     Layout = this;
     Header = new CsvHeaderLayout(this);
     Footer = null;
 }