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

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -