Click or drag to resize

OriginAnyParserReadLine Method

Reads a string line, and stops if the char is below 0x20. Afterwards, the stream cursor is placed on the character that has caused the stop.

Namespace: Altaxo.Serialization.Origin
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static string ReadLine(
	Stream fs,
	bool doUnreadDelimiter
)

Parameters

fs  Stream
The file stream.
doUnreadDelimiter  Boolean
If true, the file stream is placed on the character that has cause the stop. If false, the file stream is placed after the delimiting char.

Return Value

String
The line (without any newline, zeros, and other chars below 0x20.
See Also