public static T FromSwifterJson <T>(this string str)
 {
     return(SwifterHelper.Deserialize <T>(str));
 }
 public static object FromSwifterJson(this string str, Type type)
 {
     return(SwifterHelper.Deserialize(str, type));
 }