2
Answers

can we Trace delegate Call chain by using Delegate object ?

MethodA(Delegate obj)
{
  MethodB(obj):
}

MethodB(Delegate obj)
{
  MethodC(obj):
}


MethodC(Delegate obj)
{
  //By using obj need to Track all The Travellled Methods info

  // Like MethodA.MethodB.MethodC
}
Answers (2)