Click or drag to resize

SerializerTDeserialize Method (Stream, Encoding)

Deserializes a CSV to a list of objects.

Namespace:  Enkoni.Framework.Serialization
Assembly:  Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntax
public ICollection<T> Deserialize(
	Stream stream,
	Encoding encoding
)

Parameters

stream
Type: System.IOStream
The stream that contains the csv data.
encoding
Type: System.TextEncoding
The encoding that must be used to deserialize the data.

Return Value

Type: ICollectionT
List with objects.
See Also