Table of Contents

Interface IParserCollection<T>

Namespace
SunamoInterfaces.Interfaces
Assembly
SunamoInterfaces.dll

Interface for parsing text into a collection of typed objects.

public interface IParserCollection<T>

Type Parameters

T

The type of objects in the collection.

Extension Methods

Methods

ParseCollection(string)

Parses the text into a collection of typed objects.

List<T> ParseCollection(string text)

Parameters

text string

The text to parse.

Returns

List<T>

The parsed collection.