In this blog post, you will learn the fundamentals of C# programming, including key concepts, syntax, and practical examples. By the end, you will be equipped to write basic C# applications and understand essential programming principles.
learn csharp
All blogs tagged with learn csharp
Showing 4 of 4 articles
In C# if-else statement also tests the condition. It executes the if block if the condition is true otherwise else block, is executed. the else statement to specify a block of code to be executed if the condition is False. the if-else statement checks a Boolean expression and executes the code based on if the expression is true or false. The if part of the code executes when the value of the expression is true. The else part of the code is executed when the value of the expression is false.
The List class has a lot of useful methods that you can use to organize data. This article will cover how to sort the items in your list and make them easier to read. The Sort method is the simplest way to sort a C# list
First C# Program