Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
253 views
in Technique[技术] by (71.8m points)

How to get Function formal parameters' list dynamically in C#?

I have a class file in which, I am trying to read another function's formal parameters by passing the name of the function.
But somehow, below code is not working:

public string Post([FromBody]string value)
{
    string result = String.Empty;
    JObject json = JObject.Parse(value);
    string funcname = json["functionname"].Value<string>();

        method.Method.GetParameters ( ) [ index ].Name ;

    //typeof(MyType).GetMethod(json).Invoke(null, new [] {arg1, arg2}) //need to parameter list here
    //GetSearch(string text)

    return result;
}

Is this possible with Reflection? Or with Realproxy?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use reflection as:

var type = typeof(T);
var method = type.GetMethod(methodName);
var parameters = method.GetParameters();

where T is your class type. You can get the data you need from each ParameterInfo object.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...