An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Hi,
You can do this on line 3:
List<Device> devices = await GetDevices();
Then you don't need line 4 and simple have:
Console.WriteLine(devices.GetType());
Console.WriteLine("Hello");
I think this should work.