📌Nullable Types
Any value type can be made nullable using ?
:
int? age = null; // Nullable int
bool? isActive = null;
📌Special Types
void
→ no return value.var
→ implicit typing (compiler infers type at compile time). What is Implicit Typingdynamic
→ resolved at runtime. What is Dynamic Typing