예제 #1
0
 public static async Task <IEnumerable <Variable> > GetVariablesAsync(this IDebugger dbgr)
 {
     return(await Task.Run(() => dbgr.GetVariables()));
 }
예제 #2
0
 public static async Task <IEnumerable <Variable> > GetVariablesAsync(this IDebugger dbgr, EVariableNamespace scope = EVariableNamespace.All, params string[] names)
 {
     return(await Task.Run(() => dbgr.GetVariables(scope, names)));
 }