  | RecordWriterTWriteRecords Method  | 
 
            Writes the specified sequence of records.
            
 
    Namespace: 
   Ookii.Jumbo.IO
    Assembly:
   Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntaxpublic void WriteRecords(
	IEnumerable<T> records
)
Public Sub WriteRecords ( 
	records As IEnumerable(Of T)
)
public:
void WriteRecords(
	IEnumerable<T>^ records
)
member WriteRecords : 
        records : IEnumerable<'T> -> unit 
Parameters
- records
 - Type: System.Collections.GenericIEnumerableT
The records to write. 
Remarks
              This is primarily a helper function so that you can easily write the result of a LINQ expression
              to a record writer.
            
See Also