Click or drag to resize

CommonEngineWriteFileT Method

Used to write a file 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
Syntax
public static void WriteFile<T>(
	string fileName,
	IEnumerable<T> records
)
where T : class

Parameters

fileName
Type: SystemString
The file name
records
Type: System.Collections.GenericIEnumerableT
The records to write (Can be an array, List, etc)

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:FileHelpers.CommonEngine.WriteFile``1(System.String,System.Collections.Generic.IEnumerable{``0})"]

See Also