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?
You can use something like this:
And use it like this: