1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-06 19:59:36 +00:00
Radarr/NzbDrone.Common.Test/ReflectionExtensions.cs

11 lines
280 B
C#
Raw Normal View History

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