Sonarr/NzbDrone.Test.Common/ObjectExtentions.cs

13 lines
305 B
C#
Raw Normal View History

2013-08-01 02:02:36 +00:00
using Newtonsoft.Json;
namespace NzbDrone.Test.Common
{
public static class ObjectExtentions
{
public static T JsonClone<T>(this T source)
{
var json = JsonConvert.SerializeObject(source);
return JsonConvert.DeserializeObject<T>(json);
}
}
}