I want to list all methods of a type with a specific method signature.
For example, if a type has a few public methods:
public void meth1 (int i);
public void meth2 (int i, string s);
public void meth3 (int i, string s);
public int meth4 (int i, string s);
I want to list all the methods which expect an int as first and a string as second parameter and returns void.
How can I do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…