public string ToJson() { BeforeSerialize(); return(TJson.ToJson(this, GetJasonDataType())); }
public string ToJson() { BeforeSerialize(); return(TJson.ToJson(this, this.GetType())); }
public static T DeepClone <T>(this TJson Source) where T : TJson { string jsonString = Source.ToJson(); return(jsonString.ParseJSON <T>()); }