| 123456789101112131415161718192021 |
- namespace System.Threading
- {
- partial class Thread
- {
- public ExecutionContext ExecutionContext {
- get {
- throw new NotImplementedException ();
- }
- set {
- }
- }
- public SynchronizationContext SynchronizationContext {
- get {
- throw new NotImplementedException ();
- }
- set {
- }
- }
- }
- }
|