C# Arrays

C# Arrays:
C# Arrays  works as collections of items, for instance strings. You can use them to gather items in

C# Functions

C# Functions
A C# Functions allows you to encapsulate a piece of code and call it from other parts of your

C# Loops

C# Loops
Another essential technique when writing software is looping – the ability to repeat a block of code X

Switch statement

Switch statement
The switch statement is like a set of if statements. It’s a list of possibilities, with an action

if statement

if statement:
One of the single most important statements in every programming language is the if statement. Being able to

C# Variables

C# Variables
A C# Variables can be compared to a storage room, and is essential for the programmer. In C#,

Data Types

Data Types
Data types are used everywhere in a programming language like C#. Because it’s a strongly typed language, you

Hello, world!

Hello, world!
If you have ever learned a programming language, you know that they all start with the “Hello, world!”