It turns out that this is not as easy as it seems. The syntax is kludgy. I found the answer on Gus Perez’s blog
Imagine that you want this literal string in your C# code:
- 108P091G-000
Then you have to code this in C# as:
string sInputData = @”
- 108P091G-000
Ugh!