-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_TableData_TableDataParser_Parse
andrewvk edited this page Apr 7, 2016
·
6 revisions
[This is preliminary documentation and is subject to change.]
Parses table data.
Namespace: CodeJam.TableData
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public static IEnumerable<DataLine> Parse(
this TableDataParser.Parser parser,
TextReader reader
)
VB
<ExtensionAttribute>
Public Shared Function Parse (
parser As TableDataParser.Parser,
reader As TextReader
) As IEnumerable(Of DataLine)
F#
[<ExtensionAttribute>]
static member Parse :
parser : TableDataParser.Parser *
reader : TextReader -> IEnumerable<DataLine>
- parser
- Type: CodeJam.TableData.TableDataParser.Parser
Instance of specific parser. - reader
- Type: System.IO.TextReader
Text to parse
Type: IEnumerable(DataLine)
Enumeration of DataLine contained parsed data.
In Visual Basic and C#, you can call this method as an instance method on any object of type TableDataParser.Parser. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
TableDataParser Class
Parse Overload
CodeJam.TableData Namespace