IniSerialization.Deserialize(T) Method

TG.INI

IniSerializationDeserializeT 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
public virtual T Deserialize<T>(
	IniDocument document
)
Public Overridable Function Deserialize(Of T) ( 
	document As IniDocument
) As T
public:
generic<typename T>
virtual T Deserialize(
	IniDocument^ document
)
abstract Deserialize : 
        document : IniDocument -> 'T 
override 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.

Implements

ISerializerDeserializeT(IniDocument)
See Also