C# Класс Tp.Utils.Csv.MalformedCsvException

Наследование: System.ApplicationException
Показать файл Открыть проект

Открытые методы

Метод Описание
MalformedCsvException ( string message, int line, int column ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string message, int line, int column, Exception innerException ) : System

Initializes a new instance of the MalformedCsvException class.

Описание методов

MalformedCsvException() публичный Метод

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message, int line, int column ) : System
message string Error message.
line int The row index of the line.
column int The column index of the position at which the error occured.
Результат System

MalformedCsvException() публичный Метод

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message, int line, int column, Exception innerException ) : System
message string Error message.
line int The row index of the line.
column int The column index of the position at which the error occured.
innerException System.Exception The exception that is the cause of the current exception.
Результат System