Click or drag to resize
Accord.NET (logo)

SerializerSaveT Method (T, Stream, SerializerCompression)

Saves an object to a stream.

Namespace:  Accord.IO
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public static void Save<T>(
	this T obj,
	Stream stream,
	SerializerCompression compression = SerializerCompression.None
)
Request Example View Source

Parameters

obj
Type: T
The object to be serialized.
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