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
TThe 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
textstringThe text to parse.
Returns
- List<T>
The parsed collection.