Пример #1
0
 internal static DebugContext CreateInstance(IDebugThreadFactory runtimeThreadFactory)
 {
     return(new DebugContext(runtimeThreadFactory));
 }
Пример #2
0
 internal static DebugContext CreateInstance(IDebugThreadFactory runtimeThreadFactory) {
     return new DebugContext(runtimeThreadFactory);
 }
Пример #3
0
 private DebugContext(IDebugThreadFactory runtimeThreadFactory)
 {
     _thread        = new ThreadLocal <DebugThread>();
     _sourceFiles   = new Dictionary <string, DebugSourceFile>(StringComparer.OrdinalIgnoreCase);
     _threadFactory = runtimeThreadFactory;
 }
Пример #4
0
 private DebugContext(IDebugThreadFactory runtimeThreadFactory) {
     _thread = new ThreadLocal<DebugThread>();
     _sourceFiles = new Dictionary<string, DebugSourceFile>(StringComparer.OrdinalIgnoreCase);
     _threadFactory = runtimeThreadFactory;
 }