CommonEngineReadString Method (Type, String, Int32) |
Used to read a string without instantiating the engine.
This method has limited features. We recommend using the non static methods.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic static Object[] ReadString(
Type recordClass,
string input,
int maxRecords
)
Public Shared Function ReadString (
recordClass As Type,
input As String,
maxRecords As Integer
) As Object()
Parameters
- recordClass
- Type: SystemType
The record class. - input
- Type: SystemString
The input string. - maxRecords
- Type: SystemInt32
The max number of records to read. Int32.MaxValue or -1 to read all records.
Return Value
Type:
ObjectThe read records.
See Also