Ok I have a vbscript string in a wsf file as below:
Dim strTransData = "1,1,2,123457,1,20051012093000" & vbCrLf & _
"2,1" & vbCrLf & _
"2,2" & vbCrLf & _
"2,3" & vbCrLf & _
"3,""5449000000996"",0,3,39" & vbCrLf & _
"3,"""",100,1,500" & vbCrLf & _
"4,0,200,"""""
What I need to do is convert this string to a c# string, I understand that a vbscript & translates to a + in c# string concatentation but what does vbCrLf and _ translate to?