S
shelby.pereira
Hello,
If I have the following code excerpt where I call m1() in release
mode. my stack trace output shows only m1 and m4 and not the
intermediate method calls.
I obtain the full information in Debug mode. However this information
is critical even in Release mode, is there away to obtain it?
cheers,
shelby pereira
public void m1(){
try
{
m2();
}
catch (Exception e)
{
Console.WriteLine(e.StackTrace);
}
}
void m2(){
m3();
}
void m3(){
m4();
}
void m4()
{
throw new Exception("exc in m4");
}
If I have the following code excerpt where I call m1() in release
mode. my stack trace output shows only m1 and m4 and not the
intermediate method calls.
I obtain the full information in Debug mode. However this information
is critical even in Release mode, is there away to obtain it?
cheers,
shelby pereira
public void m1(){
try
{
m2();
}
catch (Exception e)
{
Console.WriteLine(e.StackTrace);
}
}
void m2(){
m3();
}
void m3(){
m4();
}
void m4()
{
throw new Exception("exc in m4");
}