一个用于修复JSON的工具库,受 JsonRepair 启发的C#重写版(所以投了原创)
关于为什么有这种工具,参考:"How to fix JSON and validate it with ease"
如何使用
using JsonRepairSharp.Class;
// ...
var fixedJson = JsonRepairCore.JsonRepair(rawJson);
// ...
// You can also catch the JsonRepairError exception to handle the case where the library...