You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class ChildDomainLogic : MarshalByRefObject
{
public DateTime Test1()
{
Debug.WriteLine("ChildDomainLogic.Test1");
return DateTime.Now;
}
}
If I set a breakpoint into the ChildDomainLogic it gets hit but the debugger does not resolve it as user code (shown as external code at the Callstack window) and code stepping does not show the execution location.
The text was updated successfully, but these errors were encountered:
I have a test project which I try to debug with Mono.Debugging.Soft:
the child domain logic is simple:
If I set a breakpoint into the
ChildDomainLogic
it gets hit but the debugger does not resolve it as user code (shown as external code at the Callstack window) and code stepping does not show the execution location.The text was updated successfully, but these errors were encountered: