Array is a special variable which holds more than one value at a time. It stores the homogenous elements. An array can hold many values under a single name and those can be accessed by using index.
C# 12 new features: Inline arrays Declaration: C# 11: Array declared as a separate field, allocated on the heap. C# 12: Array declared inline within the struct, no separate allocation. Initialization: ...