3e094856 4cca 52ec cdd1 36f8efe11d6c - akesseler/Plexdata.CsvParser GitHub Wiki
Determines whether source list is valid.
Namespace: Plexdata.CsvParser.Processors
Assembly: Plexdata.CsvParser.NET (in Plexdata.CsvParser.NET.dll) Version: 1.1.3+d5bef99aa35461ce4bafadf0bf2c2aeca18044ea
C#
private bool IsValid(
List<List<string>> source
)
- source
- Type: System.Collections.Generic.List(List(String))
The list to check.
Type: Boolean
True ist returned if one of the inner lists contains at least one item. False is returned in any other case.
This method determines whether source list contains at least one item.
In best case this method already find the very first Item at column zero and index zero. In worst case loops through all source list lines.