dotnet-core/samples/helloworldasync/Program.cs
2019-03-05 08:14:06 -08:00

13 lines
249 B
C#

using System;
using System.Threading.Tasks;
namespace HelloWorldSample
{
public static class Program
{
public static async Task Main()
{
await Task.Run(() => Console.WriteLine("Hello World!"));
}
}
}