Generic 타입(T)를 이용해 String과 JSON오브젝트를 상호 변환하는 함수입니다. 범용적으로 사용할 수 있어요. options는 JSON의 규칙을 설정할 수 있습니다. 상세 옵션은 여기에서 확인해주세요. using Newtonsoft.Json;private static string JsonObjToString(T obj){ try { if (obj == null) return ""; var options = new JsonSerializerSettings { MetadataPropertyHandling = MetadataPropertyHandling.Ignore, DateFormatString = "yyyy..