Click or drag to resize

FileTransformEngineTSource, TDestination Methods

The FileTransformEngineTSource, TDestination generic type exposes the following members.

Methods
  NameDescription
Public methodReadAndTransformRecords
Transform a file that contains source records to an array of the destination type
Public methodTransformFile
Transform the contents of the sourceFile and write them to the destFile.(use only if you need the array of the transformed records, TransformFileFast is faster)
Public methodTransformFileFast(TextReader, StreamWriter)
Transform the contents of the sourceFile and write them to the destFile. (faster and uses less memory, best choice for big files)
Public methodTransformFileFast(TextReader, String)
Transform the contents of the sourceFile and write them to the destFile. (faster and uses less memory, best choice for big files)
Public methodTransformFileFast(String, StreamWriter)
Transform the contents of the sourceFile and write them to the destFile. (faster and uses less memory, best choice for big files)
Public methodTransformFileFast(String, String)
Transform the contents of the sourceFile and write them to the destFile. (faster and uses less memory, best choice for big files)
Public methodTransformRecords
Transforms an array of records from the source type to the destination type
Top
See Also