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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…