1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

JSON を扱う上での備忘録として動作を残しておく。

System.Text.Json のデフォルト動作

  • public であること
  • プロパティであること
  • JsonPropertyName が指定されいていると、その名前で出力される
  • JsonPropertyName が指定されていないと、プロパティ名で出力される

Newtonsoft.Json のデフォルト動作

  • publicprivate は問わない
  • プロパティ、変数は問わない
  • JsonProperty が指定されていると、その名前で出力される
  • JsonProperty が指定されていないと、プロパティ名または変数で出力される
  • private で且つ、 JsonProperty が指定されていないと無視される
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?