|
MalformedCsvException Constructor (String, Int32, Int64, Int32, Exception)
|
Initializes a new instance of the MalformedCsvException class.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public MalformedCsvException(
string rawData,
int currentPosition,
long currentRecordIndex,
int currentFieldIndex,
Exception innerException
)
Public Sub New (
rawData As String,
currentPosition As Integer,
currentRecordIndex As Long,
currentFieldIndex As Integer,
innerException As Exception
)
Request Example
View SourceParameters
- rawData
- Type: SystemString
The raw data when the error occured. - currentPosition
- Type: SystemInt32
The current position in the raw data. - currentRecordIndex
- Type: SystemInt64
The current record index. - currentFieldIndex
- Type: SystemInt32
The current field index. - innerException
- Type: SystemException
The exception that is the cause of the current exception.
See Also