Take the following class and method:
public class Foo
public Foo Create(string bar) {
return new Foo(bar);
}
So getting "Create" is obvious: nameof(Foo.Create)
Is there any way to get "bar" other than using reflection to read the parameters at run time?
No. There is no way to get the parameter names from the outside of the method using nameof
. nameof
doesn't work for method parameters if you want the name on the calling side (for the callee it does work obviously). The other methods you mentioned, like reflection, do work.
var parameterNames = typeof(Program)
.GetMethod(nameof(Program.Main)).GetParameters()
.Select(p => p.Name);