CommonEngineWriteStringT Method |
Used to write a string 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 string WriteString<T>(
IEnumerable<T> records
)
where T : class
Public Shared Function WriteString(Of T As Class) (
records As IEnumerable(Of T)
) As String
Parameters
- 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.WriteString``1(System.Collections.Generic.IEnumerable{``0})"]
Return Value
Type:
StringThe string with the written records.
See Also