Search Results for

    Show / Hide Table of Contents

    Class CsvNoHeaderAttribute

    Attribute for CSV files without header definitions Attribute used together with the ParseWithoutHeader functions

    Inheritance
    System.Object
    CsvNoHeaderAttribute
    Namespace: FluentCsvMachine
    Assembly: library.dll
    Syntax
    public class CsvNoHeaderAttribute : Attribute

    Constructors

    | Improve this Doc View Source

    CsvNoHeaderAttribute(Int32, Nullable<String>)

    Add this attribute to your property to define the column

    Declaration
    public CsvNoHeaderAttribute(int columnIndex, string? inputFormat = null)
    Parameters
    Type Name Description
    System.Int32 columnIndex

    CSV Column Index !Zero Based! Shall not be greater than the minimum number of columns defined on any line

    System.Nullable<System.String> inputFormat

    InputFormat for DateTime, ...

    Properties

    | Improve this Doc View Source

    ColumnIndex

    Column Index

    Declaration
    public int ColumnIndex { get; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    InputFormat

    InputFormat

    Declaration
    public string? InputFormat { get; }
    Property Value
    Type Description
    System.Nullable<System.String>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright travelr - MIT License