Good day!

Say, is simple actions with library json.net
Delete, edit, write to JSON file.

Thank!

  • five
    In other words: teach me how to work with json.net! There is documentation - Bulson
  • And what do you mean by deleting and editing? JSON.NET deals with de-serialization from (for example) a file into an object structure. How to edit your objects, JSON.NET does not know and does not want to know. - VladD
  • Interested in rewriting values ​​in json file. - Vladislavs Geidans
  • 2
    With the help of JSON.NET - no way. Update the value in the object and serialize it again. A serialized object (including JSON) is a string, it is intended to transfer (less commonly - store) data, not to edit them at all - eastwing

0