Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Fundamentals

Date: March 02, 2026
Focus: Core building blocks of C# programming
Environment: Visual Studio 2026 + .NET 10 (C# 14)

1. Variables

A variable is a named storage location in memory that holds a value of a specific data type.

Syntax Examples

// Basic declaration + initialization
type variableName = initialValue;