Detailed Method Reference
Namespace: Canley.Utility.CSV
Class: CanleyCSVReader
GetRawGrid
public List<string[]> GetRawGrid()-
Description: Provides direct access to the underlying list structure for custom iteration or LINQ queries.
-
Workflow:
- Data Access: Returns the internal reference of the parsed CSV data.
- Flexibility: Allows developers to perform complex filtering or mapping operations directly on the collection.
-
Parameters: None.
-
Returns:
List<string[]>(The internal data structure). -
Example:
var data = reader.GetRawGrid();NOTE
Your manual lists the return type as
void, but based on the syntax and usage example, this method returns theList<string[]>structure.