Hi !
I'm dumb on simple question. How can I get method's signature in my
java program in "JVM notation" ?
For example for class
class A {
void foo(int a,int b) { ... }
}
I would like to get string .../A/foo(II)V for method 'foo' . I haven't
found any appropriate methods to do it.
--dima