CsvReaderTResultTryRead Method
Tries to read the next TResult from the
CSV file.
Namespace: FolkerKinzel.CsvTools.MappingsAssembly: FolkerKinzel.CsvTools.Mappings (in FolkerKinzel.CsvTools.Mappings.dll) Version: 1.1.0+1263e8243dc2cd78095f678f813d7d9c52ea4315
public bool TryRead(
out TResult result
)
Public Function TryRead (
<OutAttribute> ByRef result As TResult
) As Boolean
public:
bool TryRead(
[OutAttribute] TResult% result
)
member TryRead :
result : 'TResult byref -> bool
- result TResult
- After the method returns true, contains
the next TResult parsed from the CSV file,
otherwise default.
Booleantrue if a new
TResult instance
could be parsed from the CSV data, otherwise
false.