Variables and Data Types in C# — a practical guide to C# variables data types with clear examples you can reuse in real projects.
ASP & ASP.NET Tutorial Series (49/247). Prefer one article? Read the complete ASP.NET tutorial.
Short description
Prefer var only when the type is obvious.
Types
string name = "Asha";
int count = 3;
decimal price = 19.99m;
int? optionalId = null;