CommonEngineReadSortedFile Method |
Read the contents of a file and sort the records.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic static Object[] ReadSortedFile(
Type recordClass,
string fileName
)
Public Shared Function ReadSortedFile (
recordClass As Type,
fileName As String
) As Object()
Parameters
- recordClass
- Type: SystemType
Record Class (remember that need to implement the IComparer
interface, or you can use SortFileByfield)
- fileName
- Type: SystemString
The file to read.
Return Value
Type:
Object[Missing <returns> documentation for "M:FileHelpers.CommonEngine.ReadSortedFile(System.Type,System.String)"]
See Also