mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-20 04:38:39 +00:00
Initialise strings (#7)
This commit is contained in:
16
WoofWare.PawPrint.Test/sources/BasicLock.cs
Normal file
16
WoofWare.PawPrint.Test/sources/BasicLock.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace HelloWorldApp
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static int Main(string[] args)
|
||||
{
|
||||
object locker = new object();
|
||||
lock (locker)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user