Skip to content

Commit 1c38550

Browse files
Vorlesung 23 - Threads: Anpassung Thread-Klasse enum ThreadState (#121)
* Anpassung Konstruktor Beispiel -Beschränkungen- in Vorlesung 11_Generics * Doppelte Angabe im ThreadState-Enum entfernt
1 parent ee19443 commit 1c38550

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

23_Threads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Definitionen:
167167
public delegate void ThreadStart();
168168
public delegate void ParameterizedThreadStart(object? obj);
169169
public enum ThreadPriority (Lowest = 0, BelowNormal = 1, Normal = 2, AboveNormal = 3, Highest = 4);
170-
public enum ThreadState (Running = 0, Unstarted = 8, Stopped = 16, Suspended = 64, Stopped = 16, Aborted = 256, ...);
170+
public enum ThreadState (Running = 0, Unstarted = 8, Stopped = 16, Suspended = 64, Aborted = 256, ...);
171171

172172
public sealed class Thread{
173173
public Thread (ThreadStart start);

0 commit comments

Comments
 (0)