1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
Sonarr/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);
}
}
}