mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
13 lines
No EOL
204 B
C#
13 lines
No EOL
204 B
C#
using System;
|
|
|
|
namespace LumenWorks.Framework.IO.Csv
|
|
{
|
|
[Flags]
|
|
public enum ValueTrimmingOptions
|
|
{
|
|
None = 0,
|
|
UnquotedOnly = 1,
|
|
QuotedOnly = 2,
|
|
All = UnquotedOnly | QuotedOnly
|
|
}
|
|
} |