Example #1
0
 public string ToJson()
 {
     BeforeSerialize();
     return(TJson.ToJson(this, GetJasonDataType()));
 }
Example #2
0
 public string ToJson()
 {
     BeforeSerialize();
     return(TJson.ToJson(this, this.GetType()));
 }
Example #3
0
        public static T DeepClone <T>(this TJson Source) where T : TJson
        {
            string jsonString = Source.ToJson();

            return(jsonString.ParseJSON <T>());
        }