Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このフィールドがnullの場合、JsonConvertでフィールドをシリアル化しないことは可能ですか?
JsonConvert.SerializeObject(yourObj, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
はい。JsonSerializerSettings とその NullValueHandling プロパティを調べます。