UtilSerializationDeserializeT(T, String, SerializationFormat) Method

Deserializes the data of an Object from the specified file, using the specified serialization format.

Definition

Namespace: DevCase.Core.DataProcessing.Serialization
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Deserialize<T>(
	ref T refObj,
	string filepath,
	SerializationFormat format
)

Parameters

refObj  T
The by-reference object.
filepath  String
The filepath where from deserialize the serialized data.
format  SerializationFormat
The serialization format.

Type Parameters

T
The type.

Example

This is a code example for Binary deserialization.
C#
No code example is currently available or this language may not be supported.

See Also