課題:
JSON 文字列をNewtonsoft の JSON.NET ライブラリを利用しながら、特定のプロパティのみに焦点を当てた C# オブジェクトのリストターゲットクラス内。
実装:
1. JSON を C# クラス構造に変換する:
2.ターゲット オブジェクト クラスの作成:
3. JSON 文字列の逆シリアル化:
例:
public class MatrixModel { public string S1 { get; set; } public string S2 { get; set; } public string S3 { get; set; } public string S4 { get; set; } public string S5 { get; set; } public string S6 { get; set; } public string S7 { get; set; } public string S8 { get; set; } public string S9 { get; set; } public string S10 { get; set; } public int ScoreIfNoMatch { get; set; } } string json = ...; // Your JSON string var model = JsonConvert.DeserializeObject<List<MatrixModel>>(json);
特定のケースでは:
以上がNewtonsoft の JSON.NET を使用して JSON を C# オブジェクトのリストに逆シリアル化する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。