C# will allow you to have a string split over multiple lines, the term is called verbatim literal:
string myString = @"this is a
test
to see how long my string
can be
and it can be quite long";
If you are looking for the alternative to & _ from VB, use the + to join your lines.