1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Common.Test/ReflectionExtensions.cs

11 lines
280 B
C#
Raw Normal View History

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