使用System.Text.Json将JsonString转成Json对象:
System.Text.Json
using System.Text.Json; JsonDocument jsonDocument = JsonDocument.Parse(strings[0]); JsonElement root = jsonDocument.RootElement; string value = root.GetProperty("value").GetString();