I want to use the carriage-return/linefeed character combination (Chr(13)+Chr(10)).
I am using the Microsoft.Visualbasic namespace but I am getting the error
system.linq.strings is inaccessible due to its protection
string Wrap = Strings.Chr(13) + Strings.Chr(10);
The idiomatic way to do this in C# is
string Wrap = "\r\n";. In this situation, though, I would simply put it in-line, like this: