C#C# · Lesson 7 of 9
LINQ & Async/Await
LINQ is what makes C# shine for data manipulation. async/await is what makes C# shine for I/O. Together they're unstoppable.
◆ Note
In C# console apps with top-level statements, you can use await directly at the top level. In older style code, the Main method must be async Task Main(). Either way, async/await is the standard for any I/O operation.
In C# console apps with top-level statements, you can use await directly at the top level. In older style code, the Main method must be async Task Main(). Either way, async/await is the standard for any I/O operation.