Visual Studio JSON Multiline String -
i have simple json file
{ "property" : "value" } the value in application quite long , visual studio forces me write on single line. if try line break mere human eyes:
{ "property" : "value value value value value" } i error string not continued on second line. cannot seem use + operator either.
does have suggestion? thanks.
try adding @ before multi-line string:
{ "property" : @"value value value value value" }
Comments
Post a Comment