Click or drag to resize

CommonEngineTransformFileFastTSource, TDest Method

Faster way to Transform the records of type sourceType in the sourceFile in records of type destType and write them to the destFile.

Namespace:  FileHelpers
Assembly:  FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntax
public static int TransformFileFast<TSource, TDest>(
	string sourceFile,
	string destFile
)
where TSource : class, Object, ITransformable<TDest>
where TDest : class

Parameters

sourceFile
Type: SystemString
The file with records to be transformed
destFile
Type: SystemString
The destination file with the transformed records

Type Parameters

TSource

[Missing <typeparam name="TSource"/> documentation for "M:FileHelpers.CommonEngine.TransformFileFast``2(System.String,System.String)"]

TDest

[Missing <typeparam name="TDest"/> documentation for "M:FileHelpers.CommonEngine.TransformFileFast``2(System.String,System.String)"]

Return Value

Type: Int32
The number of transformed records
See Also