Skip to content

String visitor #7

@airbreather

Description

@airbreather

Desired usage:

public sealed class MyVisitor : CsvUTF8StringReaderVisitorBase
{
    public MyVisitor(int maxFieldLength, DecoderFallback decoderFallback)
        : base(maxFieldLength, decoderFallback)
    {
    }

    public override void VisitField(string field)
    {
        // do stuff with this field
    }

    public override void VisitEndOfRecord()
    {
        // same as the base version
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requestusabilityMake the library easier to use

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions