C# - An introduction to LINQ

In C#, LINQ (Language INtegrated Query) is a powerful tool for querying and manipulating data. LINQ provides an intuitive way to interact with various data sources, »

Peter Daugaard Rasmussen Peter Daugaard Rasmussen on C#

C# - How to Work with Files and Folders

In C# you have several ways to interact with files and folders, the most common are the File, Directory and FileInfo classes. Using these classes you »

Peter Daugaard Rasmussen Peter Daugaard Rasmussen on C#

C# - How to get a random number

In C# you can use the Random class to get random numbers: Random random = new Random(); var diceRoll = random.Next(1,7); In the above we »

Peter Daugaard Rasmussen Peter Daugaard Rasmussen on C#