|
SerializerLoadT Method (String, SerializerCompression)
|
Loads an object from a file.
Namespace:
Accord.IO
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static T Load<T>(
string path,
SerializerCompression compression = SerializerCompression.None
)
Public Shared Function Load(Of T) (
path As String,
Optional compression As SerializerCompression = SerializerCompression.None
) As T
Request Example
View SourceParameters
- path
- Type: SystemString
The path to the file from which the object is to be deserialized. - compression (Optional)
- Type: Accord.IOSerializerCompression
The type of compression to use. Default is None.
Type Parameters
- T
Return Value
Type:
TThe deserialized object.
See Also