Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 743 Bytes

File metadata and controls

25 lines (18 loc) · 743 Bytes

C# LINQ Sample

This sample is created during the Working with LINQ tutorial for learning C# features. Please see that topic for detailed steps on the code for this sample.

Key Features

This sample demonstrates querying data sources and processing them using Language Integrated Query (LINQ) in C#.

Build and Run

To build and run the sample, type the following three commands:

dotnet restore dotnet build dotnet run

dotnet restore installs all the dependencies for this sample into the current directory. dotnet build creates the output assembly (or assemblies). dotnet run runs the output assembly.