How can I comment on inisde json file lines?

Some date is stored in json file, how can I comment on some lines as shown below?

[
    {
        "id":"aaaa",
    //  "path": "xxxx",
        "path": "yyyy"
    },
   {
       "id":"bbbb",
       "path": "cccc"
    }
]

My IDE is Visual Studio.

+4
source share
1 answer

Is this an asp.net project (do you mention using Visual Studio)? If so, you can save json data as a view and use server side commenting, for example. in razor:

@* "path": "yyyy", *@
0
source

All Articles