mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-05 14:18:40 +00:00
17 lines
254 B
C#
17 lines
254 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
object locker = new object();
|
|
lock (locker)
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
}
|