|
SerializerSaveT Method (T, String, 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,
string path,
SerializerCompression compression = SerializerCompression.None
)
<ExtensionAttribute>
Public Shared Sub Save(Of T) (
obj As T,
path As String,
Optional compression As SerializerCompression = SerializerCompression.None
)
Request Example
View SourceParameters
- obj
- Type: T
The object to be serialized. - path
- Type: SystemString
The path to the file 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