There was an error while loading. Please reload this page.
Reads single line from table data and parses it.
Namespace: CodeJam.TableDataAssembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0
C#
public delegate string[] Parser( TextReader reader, ref int lineNum )
VB
Public Delegate Function Parser ( reader As TextReader, ByRef lineNum As Integer ) As String()
F#
type Parser = delegate of reader : TextReader * lineNum : int byref -> string[]
Type: String[]Null, if end of file reached, string[0] if line contains no valued, or array of values.
CodeJam.TableData Namespace