+ 1
Practical use of arrays?
2 Respuestas
+ 2
To store linear data of similar types
+ 1
For example, if you read a line with data from a text (tab delimited) file you can split it by spaces and save it in an array. In Csharp you'd have something like this. line.Split(" "). After that you can manipulate the data in the array.