Skip to content

Commit 9dfbae8

Browse files
Style updates
1 parent 431d9f6 commit 9dfbae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Program
99

1010
static void Main()
1111
{
12-
Thread thread1 = new Thread(ProcessRequest);
13-
Thread thread2 = new Thread(ProcessRequest);
12+
Thread thread1 = new(ProcessRequest);
13+
Thread thread2 = new(ProcessRequest);
1414

1515
thread1.Start("REQ-001");
1616
thread2.Start("REQ-002");

0 commit comments

Comments
 (0)