How can I get the object id which calls a method?
############### #######
Class1 c1 = new Class1();
c1.fuffa();
############### #######
I want to now c1's id whean fuffa is called.
void CProfilerCallba ck::Enter(
FunctionID funcId,
UINT_PTR clientData,
COR_PRF_FRAME_I NFO func,
COR_PRF_FUNCTIO N_ARGUMENT_INFO *argumentInfo)
{
............... .......
}
I'm able to get every information I need for drawing an UML sequenze diagram, i miss just the "object" (this)
thx
############### #######
Class1 c1 = new Class1();
c1.fuffa();
############### #######
I want to now c1's id whean fuffa is called.
void CProfilerCallba ck::Enter(
FunctionID funcId,
UINT_PTR clientData,
COR_PRF_FRAME_I NFO func,
COR_PRF_FUNCTIO N_ARGUMENT_INFO *argumentInfo)
{
............... .......
}
I'm able to get every information I need for drawing an UML sequenze diagram, i miss just the "object" (this)
thx
Comment