反序列化json字符串
AxisHttpResponse axisRes = JsonSerializer.Deserialize<AxisHttpResponse>(resString);
序列化数据结构为json字符串
string json = JsonSerializer.Serialize<AxisInfo>(this.axisDxfInfo);
反序列化json字符串
AxisHttpResponse axisRes = JsonSerializer.Deserialize<AxisHttpResponse>(resString);
序列化数据结构为json字符串
string json = JsonSerializer.Serialize<AxisInfo>(this.axisDxfInfo);