Table of Contents

Interface IParserExt<T>

Namespace
SunamoInterfaces.Interfaces
Assembly
SunamoInterfaces.dll

Interface for parsing text into a typed object.

public interface IParserExt<T>

Type Parameters

T

The type to parse to.

Extension Methods

Methods

Parse(string)

Parses the text into a typed object.

T Parse(string text)

Parameters

text string

The text to parse.

Returns

T

The parsed object.