C# Replace an array in a JSON file
I’m trying to replace an array in a JSON file using C# .net 6.0 There is such a JSON file: { … "exchange":{ … "pair_whitelist": [ "EOS3S/USDT", "ACH/USDT", "SOC/USDT"] … } … } I want to replace this "pair_whitelist" array with another array "pair_whitelist": [ "SKM/USDT", "NEW/USDT", "XEC/USDT"] How should I do it? My attempt… Read More C# Replace an array in a JSON file