✅ Difference between `string[]` and `IEnumerable<string>`
in the following the code, the output seems to be the same:
i know that
but what does it mean to have
i know that
enums are used to define a set of exhaustive types, and are closely related to ints.but what does it mean to have
IEnumerable<string> and how different is it from string[]?