Click or drag to resize

AsciiImporterImportStreamIntoNewTable Method

Imports ascii from a stream into a table. Returns null (!) if nothing is imported.

Namespace: Altaxo.Serialization.Ascii
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DataTable? ImportStreamIntoNewTable(
	Stream stream,
	string streamOriginHint
)

Parameters

stream  Stream
The stream to import ascii from. Is not (!) closed at the end of this function.
streamOriginHint  String
Designates a short hint where the provided stream originates from. Can be Null if the origin is unknown.

Return Value

DataTable
The table representation of the imported text, or null if nothing is imported.
See Also