More than 1 year has passed since last update.
~C# 7.0
using System;
using System.Threading.Tasks;
class Program
{
static void Main(string[] args)
{
MainAsync().Wait();
}
private static async Task MainAsync()
{
await Task.Delay(2000);
Console.WriteLine("Hello World!");
}
}
C# 7.1~
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
await Task.Delay(2000);
Console.WriteLine("Hello World!");
}
}
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin