XPRBreadarrline Method (StreamReader, Int32, String, Object[], Int32)
Read a line of an array from a data file.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0

public int XPRBreadarrline( StreamReader fileStreamIn, int maxlen, string format, out Object[] output, int numData )
Parameters
- fileStreamIn
-
Type:
System.IOStreamReader
The open StreamReader to read the data from. - maxlen
-
Type:
SystemInt32
The maximum length of data to read. - format
-
Type:
SystemString
The format to read the data in. This is a string made up of the following formats, seperated by any seperating characters. The format must be exact with respect to spacing (if there are 0+ spaces between the entries then a space " " must be included in the format string). See the BCL example programs for examples of this.- {g} - A double value.
- {i} - An integer value.
- {t} or {T} - A string value.
- {s} - A string within single quotes.
- {S} - A string within double quotes.
- output
-
Type:
SystemObject
The out object array. The results from this must be unboxed to the correct type on return and allocated to the relevant variables. See the BCL examples for examples of this. - numData
-
Type:
SystemInt32
The number of times to read the format string. For instance if the format string was "{i} , {g} ; {S} , " and the numdata=2 then the resultant format string to be read would be "{i} , {g} ; {S} , {i} , {g} ; {S}" as the method strips everything after the last occurence of "}".
Return Value
Type: Int32The integer number of items read, -1 on error.

xbcoco2.cs, xbcoco3.cs, xbdelvr.cs and xbpurch.cs in the Introductory Examples folder. folioqp.cs, xbexpl1i.cs and xbexpl2.cs in the User's Guide Examples folder.
