I have an object a created by someone else using the following
classA a = new classA()
However I don't know a is classA or not inside some_function.
void some_function(Object a)
{
}
I am wondering from a, how can I get classA, and then call its static method?