Example #1
0
 public IDebuggerType GetType(Type type)
 {
     return(debugger.Dispatcher.UI(() => {
         var ad = debugger.FindAppDomainUI(mod.AppDomain.CorAppDomain);
         return ad == null ? null : ad.GetType(type);
     }));
 }
Example #2
0
 public IDebuggerType GetType(Type type) => debugger.Dispatcher.UI(() => debugger.FindAppDomainUI(mod.AppDomain.CorAppDomain)?.GetType(type));