public static T Deserialize<T>(
FileInfo file,
SerializationFormat format
)
Public Shared Function Deserialize(Of T) (
file As FileInfo,
format As SerializationFormat
) As T
Dim file As FileInfo
Dim format As SerializationFormat
Dim returnValue As T
returnValue = UtilSerialization.Deserialize(file,
format)
public:
generic<typename T>
static T Deserialize(
FileInfo^ file,
SerializationFormat format
)
static member Deserialize :
file : FileInfo *
format : SerializationFormat -> 'T
No code example is currently available or this language may not be supported.
[Missing <param name="file"/> documentation for "M:DevCase.Core.DataProcessing.Serialization.UtilSerialization.Deserialize``1(System.IO.FileInfo,DevCase.Core.DataProcessing.Serialization.SerializationFormat)"]
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)
obj = Deserialize(Of String())(New FileInfo("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.