Skip to content
This repository has been archived by the owner on Nov 25, 2019. It is now read-only.

Commit

Permalink
Make this compile with .NET 4.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Baulig committed Mar 13, 2013
1 parent be039c9 commit e77b12e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -70,7 +70,7 @@ public override Type ParameterType

public override Collection<T> GetCustomAttributes<T>()
{
return new Collection<T>(ParameterInfo.GetCustomAttributes<T>(inherit: false));
return new Collection<T>(ParameterInfoExtensions.GetCustomAttributes<T>(ParameterInfo, inherit: false));
}
}
}

0 comments on commit e77b12e

Please sign in to comment.