예제 #1
0
 public static T FromJson <T>(this AbstractSerializationService service, string json, string intent = null)
 {
     if (json.IsNullOrWhiteSpace())
     {
         return(default(T));
     }
     return((T)service.FromJson(json, typeof(T), intent));
 }