Declaration
public static void SerializeToFile<TElement>(
Type saveType,
object saveObject,
string filename,
IClassifyFormat<TElement> format,
ClassifyOptions options = null
)
Summary
Stores the specified object in a file with the given path and filename.
Generic type parameters
TElement |
Type of the serialized form (see format). |
Parameters
Type | saveType |
Type of the object to store. |
object | saveObject |
Object to store in a file. |
string | filename |
Path and filename of the file to be created. If the file already exists, it is overwritten. |
IClassifyFormat<TElement> | format |
Implementation of a Classify format. |
ClassifyOptions | options |
Options. |