Interface IParserExt<T>
- Namespace
- SunamoInterfaces.Interfaces
- Assembly
- SunamoInterfaces.dll
Interface for parsing text into a typed object.
public interface IParserExt<T>
Type Parameters
TThe type to parse to.
- Extension Methods
Methods
Parse(string)
Parses the text into a typed object.
T Parse(string text)
Parameters
textstringThe text to parse.
Returns
- T
The parsed object.