public void Initialize()
 {
     context = new TextFileContextStub("Hi, I''m Ray 'Boom Boom' Mancini");
     field = new DelimitedField(new[] { " " }, "'", "'");
 }
 public void Initialize()
 {
     context = new TextFileContextStub("Here is a ``quoted value`` and ``another one``. ");
     field = new DelimitedField(new[] { " " }, "``", null);
 }
 public void Initialize()
 {
     context = new TextFileContextStub("One, two, three||four");
     field = new DelimitedField(new[] { ",", " ", "||" }, null, null);
 }