SerializationWriterWriteOptimized Method (Object) | 
 
            Writes a not-null object[] into the stream using the fewest number of bytes possible.
            Stored Size: 2 bytes upwards depending on data content
            Notes:
            An empty object[] takes 1 byte.
            The contents of the array will be stored optimized.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxpublic void WriteOptimized(
	Object[] values
)
Public Sub WriteOptimized ( 
	values As Object()
)
Parameters
- values
 - Type: SystemObject
The object[] to store. Must not be null. 
See Also