I have the following string "1, 'John Doe', 'Micronesia, Federated States of'"
and the following model :
[DelimitedRecord(",")]
public class Client
{
public int Id;
public string Name;
public string Country;
}
When I use FileHelpers to parse it I get error because of the comma inside the country