web-dev-qa-db-ja.com

メソッドパラメータの名前を取得するにはどうすればよいですか?

私が次のような方法を持っている場合:

public void MyMethod(int arg1, string arg2)

引数の実際の名前を取得するにはどうすればよいですか? MethodInfoでパラメーターの名前を実際に示すものを見つけることができないようです。

次のようなメソッドを記述したいと思います。

public static string GetParamName(MethodInfo method, int index)

したがって、このメソッドを次のように呼び出した場合:

string name = GetParamName(MyMethod, 0)

「arg1」を返します。これは可能ですか?

31
Luke Foust
public static string GetParamName(System.Reflection.MethodInfo method, int index)
{
    string retVal = string.Empty;

    if (method != null && method.GetParameters().Length > index)
        retVal = method.GetParameters()[index].Name;


    return retVal;
}

上記のサンプルは、必要なことを行うはずです。

58
Tom Anderson

次のようなものを試してください:

foreach(ParameterInfo pParameter in pMethod.GetParameters())
{
    //Position of parameter in method
    pParameter.Position;

    //Name of parameter type
    pParameter.ParameterType.Name;

    //Name of parameter
    pParameter.Name;
}
4
Jeremy

nameof(arg1)は変数の名前を返しますarg1

https://msdn.Microsoft.com/en-us/library/dn986596.aspx

3
Warren Parad

エラーチェックなしで:

public static string GetParameterName ( Delegate method , int index )
{
    return method.Method.GetParameters ( ) [ index ].Name ;
}

'Func <TResult>'と導関数を使用して、ほとんどの状況でこれを機能させることができます

1
David Kemp