|   | SerializerSaveT Method (T, BinaryFormatter, Stream, SerializerCompression) | 
        
         
              Saves an object to a stream.
            
 
    Namespace: 
   Accord.IO
    Assembly:
   Accord (in Accord.dll) Version: 3.8.0
 Syntax
Syntaxpublic static void Save<T>(
	this T obj,
	BinaryFormatter formatter,
	Stream stream,
	SerializerCompression compression = SerializerCompression.None
)
<ExtensionAttribute>
Public Shared Sub Save(Of T) ( 
	obj As T,
	formatter As BinaryFormatter,
	stream As Stream,
	Optional compression As SerializerCompression = SerializerCompression.None
)
Parameters
- obj
- Type: T
 The object to be serialized.
- formatter
- Type: System.Runtime.Serialization.Formatters.BinaryBinaryFormatter
 The binary formatter.
- stream
- Type: System.IOStream
 The stream to which the object is to be serialized.
- compression (Optional)
- Type: Accord.IOSerializerCompression
 The type of compression to use. Default is None.
Type Parameters
- T
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also