Click or drag to resize

SingleLineSeparationStrategy Class

This separation strategy returns the entire line as a single token.
Inheritance Hierarchy
SystemObject
  Altaxo.Serialization.AsciiSingleLineSeparationStrategy

Namespace: Altaxo.Serialization.Ascii
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public class SingleLineSeparationStrategy : IAsciiSeparationStrategy, 
	IImmutable, IEquatable<SingleLineSeparationStrategy>

The SingleLineSeparationStrategy type exposes the following members.

Constructors
 NameDescription
Public methodSingleLineSeparationStrategyInitializes a new instance of the SingleLineSeparationStrategy class
Top
Methods
 NameDescription
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetTokens For a given line of ascii text, this gives the separated tokens as an enumerable list of strings.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Overrides ObjectToString)
Top
Remarks
This strategy can be used, for instance, when you have text containing spaces that should be imported into a single text column.
See Also