| SerializationWriterWriteT Method (ListT) | 
 
            Writes a non-null generic List into the stream.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic void Write<T>(
	List<T> value
)
Public Sub Write(Of T) ( 
	value As List(Of T)
)
Parameters
- value
 - Type: System.Collections.GenericListT
The generic List. 
Type Parameters
- T
 - The list Type.
 
Remarks
            The list type itself is not stored - it must be supplied
            at deserialization time.
            
            The list contents are stored as an array.
            
See Also