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