2013-07-19 03:47:55 +00:00
|
|
|
|
namespace NzbDrone.Common.Test
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|