9
기본 클래스 객체의 목록을 직렬화 해제하기 위해 JSON.NET에서 사용자 정의 JsonConverter를 구현하는 방법은 무엇입니까?
여기에 제공된 JSON.net 예제를 확장하려고합니다. http://james.newtonking.com/projects/json/help/CustomCreationConverter.html 기본 클래스 / 인터페이스에서 파생되는 다른 하위 클래스가 있습니다. public class Person { public string FirstName { get; set; } public string LastName { get; set; } } public class Employee : Person { public string Department { get; set; } public string JobTitle …