using System.Threading.Tasks;
public static async Task Main()
var client = new Gw2Sharp.Gw2Client();
var result = await client.WebApi.V2.Items.ManyAsync(new[] { 68377, 23020 });
foreach (var item in result)
Console.WriteLine($"{item.Id}: {item.Name}");