Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sources/Threads.cs
2025-05-27 21:55:19 +01:00

14 lines
260 B
C#

using System.Threading.Tasks;
namespace HelloWorldApp
{
class Program
{
static async System.Threading.Tasks.Task<int> Main(string[] args)
{
var result = await Task.Run(() => 3);
return result;
}
}
}