What is a predefined type in C#?
Predefined types (also called built-in types) are types that are specially supported by the compiler.
What is the int type?
The int type is a predefined type for representing the set of integers that fit into 32 bits of memory, from −231 to 231−1.
What is a top-level statement?
Top-level statements (from C# 9) let you avoid the baggage of a static Main method and a containing class.