Radarr/src/NzbDrone.Test.Common/ReflectionExtensions.cs

11 lines
280 B
C#
Raw Permalink Normal View History

2013-07-19 03:47:55 +00:00
namespace NzbDrone.Test.Common
2012-09-11 06:35:25 +00:00
{
public static class ReflectionExtensions
{
public static T GetPropertyValue<T>(this object obj, string propertyName)
{
return (T)obj.GetType().GetProperty(propertyName).GetValue(obj, null);
}
}
}