Replies: 1 comment 2 replies
-
Properties do not define parameter definitions, only a property signature with the parameter types and return type (exposed under If you really need a PropertyDefinition property = ...;
foreach (var parameter in property.GetMethod.Parameters)
{
Console.WriteLine(parameter.Name);
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone, How to get property's Parameters as
AsmResolver.DotNet.Collections.Parameter
orParameterDefinition
fromPropertyDefinition
?, is there any way to do that? please provide sample code for demonstration.Thanks
Beta Was this translation helpful? Give feedback.
All reactions