Initialise strings (#7)

This commit is contained in:
Patrick Stevens
2025-05-18 18:47:33 +01:00
committed by GitHub
parent d85bfeb168
commit 03030cb79e
17 changed files with 840 additions and 312 deletions

View File

@@ -0,0 +1,16 @@
using System;
namespace HelloWorldApp
{
class Program
{
static int Main(string[] args)
{
object locker = new object();
lock (locker)
{
return 1;
}
}
}
}