Exemplo n.º 1
0
 public static void SwitchNewFieldState(this CsvReader context)
 {
     context.State = StateHolder.NewFieldState;
 }
Exemplo n.º 2
0
 public static Field SwitchLiteralInferState(this CsvReader context)
 {
     context.State = StateHolder.LiteralInferState;
     return(context.ReadField());
 }
Exemplo n.º 3
0
 public static Field SwitchFileEndState(this CsvReader context)
 {
     context.State = StateHolder.FileEndState;
     return(context.ReadField());
 }
Exemplo n.º 4
0
 public static Field SwitchNonEscapeState(this CsvReader context)
 {
     context.State = StateHolder.NonEscapeState;
     return(context.ReadField());
 }