File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 22 <Settings>
33 <AllowParallelTestExecution>True</AllowParallelTestExecution>
44 <InstrumentationMode>Optimised</InstrumentationMode>
5+ <RdiConfigured>True</RdiConfigured>
56 <SolutionConfigured>True</SolutionConfigured>
67 </Settings>
78</SolutionConfiguration>
Original file line number Diff line number Diff line change @@ -12,23 +12,23 @@ namespace CsvHelper;
1212public enum CsvMode
1313{
1414 /// <summary>
15- /// Uses RFC 4180 format (default).
15+ /// Uses RFC 4180 format (default).<br/>
1616 /// If a field contains a <see cref="CsvConfiguration.Delimiter"/> or <see cref="CsvConfiguration.NewLine"/>,
17- /// it is wrapped in <see cref="CsvConfiguration.Quote"/>s.
17+ /// it is wrapped in <see cref="CsvConfiguration.Quote"/>s.<br/>
1818 /// If quoted field contains a <see cref="CsvConfiguration.Quote"/>, it is preceded by <see cref="CsvConfiguration.Escape"/>.
1919 /// </summary>
2020 RFC4180 = 0 ,
2121
2222 /// <summary>
23- /// Uses escapes.
23+ /// Uses escapes.<br/>
2424 /// If a field contains a <see cref="CsvConfiguration.Delimiter"/>, <see cref="CsvConfiguration.NewLine"/>,
25- /// or <see cref="CsvConfiguration.Escape"/>, it is preceded by <see cref="CsvConfiguration.Escape"/>.
25+ /// or <see cref="CsvConfiguration.Escape"/>, it is preceded by <see cref="CsvConfiguration.Escape"/>.<br/>
2626 /// Newline defaults to \n.
2727 /// </summary>
2828 Escape ,
2929
3030 /// <summary>
31- /// Doesn't use quotes or escapes.
31+ /// Doesn't use quotes or escapes.<br/>
3232 /// This will ignore quoting and escape characters. This means a field cannot contain a
3333 /// <see cref="CsvConfiguration.Delimiter"/>, <see cref="CsvConfiguration.Quote"/>, or
3434 /// <see cref="CsvConfiguration.NewLine"/>, as they cannot be escaped.
You can’t perform that action at this time.
0 commit comments