public static object FromLitJson(this string str, Type type)
 {
     return(LitHelper.Deserialize(str, type));
 }
 public static T FromLitJson <T>(this string str)
 {
     return(LitHelper.Deserialize <T>(str));
 }
Example #3
0
 public static string ToLitJson <T>(this T o)
 {
     return(LitHelper.Serialize(o));
 }