ISerializer.Deserialize(T) Method

TG.INI

ISerializerDeserializeT Method

Deserializes the IniDocument into the provided type.

Namespace:  TG.INI.Serialization
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
T Deserialize<T>(
	IniDocument document
)
Function Deserialize(Of T) ( 
	document As IniDocument
) As T
generic<typename T>
T Deserialize(
	IniDocument^ document
)
abstract Deserialize : 
        document : IniDocument -> 'T 

Parameters

document
Type: TG.INIIniDocument
The IniDocument containing the values to be applied.

Type Parameters

T
The type of object that should be created and returned.

Return Value

Type: T
A new instance of T type.
See Also