TextSerializer<TTargetType>.DeserializeArray method (1 of 2)

Creates a collection of TargetType objects from the data in the passed in stream.

public ICollection<TTargetType> DeserializeArray(TextReader reader)
parameter description
reader Reader which contains the CSV or FixedWidth data to deserialize.

Return Value

A collection of TargetType objects.

See Also


TextSerializer<TTargetType>.DeserializeArray method (2 of 2)

Creates a collection of TargetType objects from the data in the passed in stream.

public ICollection<TTargetType> DeserializeArray(TextReader reader, int count)
parameter description
reader Reader which contains the CSV or FixedWidth data to deserialize.
count Number of records to read into the stream.

Return Value

A collection of TargetType objects.

See Also