Rhino ETL C# DelimitedRecord -


i know if there way ignore delimitedrecord if found in file string "70,000 - 99,999"

file sample:

1, "70,000 - 99,999" 6, "20,000 - 99,999" 8, "50,000 - 99,999"

[delimitedrecord(",")] public class myclass {     public string id;     public string size;  } 

i got solution.

i need use [fieldquoted()] annotation on field.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -