Loading...

Language Basics

Fundamentals of C# syntax, type system, and control flow. The first stop for beginners to grasp the logic of the language.

Language Basics

For anyone starting with C#, this section covers syntax, basic data types, operators, conditional statements, and loops. Exception handling and the concept of namespaces are also included as the building blocks every developer must know.

Goal: Learn syntax and control flow to prepare for more advanced concepts.

TL;DR

  • if, switch, for, foreach structures.
  • Basic types: int, string, bool.
  • Error handling: try/catch/finally.

First C# Project

11 January 2026 • Language Basics

First console app in C# with Visual Studio 2022: usage of WriteLine, ReadKey, and ReadLine.

C#

C# Syntax Structure

13 January 2026 • Language Basics

Learn the basics of C# syntax, including code blocks, comments, and variable naming rules, with clear explanations and practical examples.

C#

C# Operators and Expressions

13 January 2026 • Language Basics

Operators and expressions in C#: arithmetic, comparison, logical, increment/decrement, ternary, and null-coalescing usage.

C#