UtilSerializationDeserializeT(T, String, SerializationFormat) Method
Deserializes the data of an Object from the specified file, using the specified serialization format.
Namespace: DevCase.Core.DataProcessing.SerializationAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public:
generic<typename T>
static void Deserialize(
T% refObj,
String^ filepath,
SerializationFormat format
)
static member Deserialize :
refObj : 'T byref *
filepath : string *
format : SerializationFormat -> unit
No code example is currently available or this language may not be supported.
- refObj T
-
The by-reference object.
- filepath String
-
The filepath where from deserialize the serialized data.
- format SerializationFormat
-
The serialization format.
- T
-
The type.
This is a code example for Binary deserialization.
No code example is currently available or this language may not be supported.
Dim obj As String() = {"Hello World!"}
Serialize(obj, "C:\File.bin", SerializationFormat.Binary)
Deserialize(obj, "C:\File.bin", SerializationFormat.Binary)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.