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
Syntaxpublic static void WriteFile<T>(
string fileName,
IEnumerable<T> records
)
where T : class
Public Shared Sub WriteFile(Of T As Class) (
fileName As String,
records As IEnumerable(Of T)
)
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