Search code examples
c#metadatac#-6.0nameof

Is there any way for the nameof operator to access method parameters (outside of the same method)?


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?


Solution

  • 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);