Complete guide to C# LINQ and lambda expressions

Let’s get acquainted with C# LINQ and lambda expressions. We will start by learning about lambda expressions and see how to use the most common ones. Afterward, we will learn how to use C# LINQ, what LINQ queries look like, and see the most used queries in action. In this comprehensive guide to C#...

Read More »

6 min read

Do you want to know how to use C# try catch?

In this article, we will learn how to use C# try catch statements, exceptions, and exception handling. We will learn how to catch multiple exception types and look over C# try finally statement. Before we end, we will look over stack trace and see some best practices when it comes to exception hand...

Read More »

7 min read

All you need to know about C# arrays and lists

The time has come to go into some details about C# arrays and C# lists. When writing code you will find that you will need to work with collections of data. We will learn about different ways of working with sequences of elements. I will explain what are arrays, how to create and initialize them, a...

Read More »

7 min read

Everything you need to know about C# loops

In this post, we will talk about what tools we have at our disposal for executing code repeatedly. We will find out what a loop is and we will talk about different types of loops in C#. Among the C# loops that we will cover in this article, we find the while loop, do while, C# for, and C# foreach. ...

Read More »

8 min read

How to use Conditional Statements in C#

In this post, we will cover the conditional statements in C#. We will talk about conditional operators and logical operators. Afterward, we will find out about if-else statements, nested if-else, sequences of if-else, and switch-case statements. In the end, I will provide you with some best practic...

Read More »

8 min read