Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/Threads.cs
2025-06-27 10:54:00 +00: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;
}
}
}