123456789101112131415161718192021222324252627 |
- namespace WWPipeLine.Commons
- {
-
-
-
- public static class PropertiesExtended
- {
-
-
-
-
-
-
- #region
- public static T DataDeepClone<T>(this object obj) where T : class
- {
- T result = (T)obj;
- string json = Commons.SerializeHelper.JsonHepler.Json_SerializeObject(obj, true);
- result = Commons.SerializeHelper.JsonHepler.Json_DeserializeObject<T>(json);
- return result;
- }
- #endregion
- }
- }
|