Method used to read data from a text streams. Most users should not need this method

Namespace: ScopeRuntime
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
public bool Deserialize(
	StreamReader reader,
	char delimiter
)
Visual Basic
Public Function Deserialize ( _
	reader As StreamReader, _
	delimiter As Char _
) As Boolean
Visual C++
public:
bool Deserialize(
	StreamReader^ reader, 
	wchar_t delimiter
)

Parameters

reader
Type: StreamReader
StreamReader containing rows
delimiter
Type: Char
Delimiter used to separate columns

Return Value

false, if there was no row to deserialize

See Also