Delimited Text File Class
Provides static methods for reading and writing
files in delimited text format.
Definition
Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
public class DelimitedTextFile
- Inheritance
- Object → DelimitedTextFile
Constructors
Delimited | Initializes a new instance of the DelimitedTextFile class |
Methods
Append( | Opens a data stream in delimited-text format for writing. |
Append( | Opens a data stream in delimited-text format for writing. |
Create( | Creates a data file in delimited text format for writing. |
Create( | Creates a data file in CSV format for writing. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
Get | Serves as the default hash function. (Inherited from Object) |
Get | Gets the Type of the current instance. (Inherited from Object) |
Memberwise | Creates a shallow copy of the current Object. (Inherited from Object) |
Open( | Opens a data stream in delimited text format for reading. |
Open( | Opens a data file in delimited text format for reading. |
Read | Reads a complex matrix from a stream in delimited text format. |
Read | Reads a complex matrix from a file in delimited text format. |
Read | Reads a complex vector from a stream in delimited text format. |
Read | Reads a complex vector from a file in delimited text format. |
Read | Reads a data frame from a stream in delimited text format. |
Read | Reads a data frame from a file in delimited text format. |
Read | Reads a data frame from a stream in delimited text format. |
Read | Reads a data frame from a file in delimited text format. |
Read | Reads a data frame from a stream in delimited text format. |
Read | Reads a data frame from a file in delimited text format. |
Read | Reads a matrix from a stream in delimited text format. |
Read | Reads a matrix from a file in delimited text format. |
Read | Reads a vector from a stream in delimited text format. |
Read | Reads a vector from a file in delimited text format. |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Write<T>(Stream, Matrix<T>, DelimitedTextOptions) | Writes a matrix to a stream in delimited text format. |
Write<T>(Stream, Matrix<Complex<T>>, DelimitedTextOptions) | Writes a complex matrix to a stream in delimited text format. |
Write<T>(Stream, Vector<T>, DelimitedTextOptions) | Writes a vector to a stream in delimited text format. |
Write<T>(Stream, Vector<Complex<T>>, DelimitedTextOptions) | Writes a complex vector to a stream in delimited text format. |
Write<T>(String, Matrix<T>, DelimitedTextOptions) | Writes a matrix to a file in delimited text format. |
Write<T>(String, Matrix<Complex<T>>, DelimitedTextOptions) | Writes a complex matrix to a file in delimited text format. |
Write<T>(String, Vector<T>, DelimitedTextOptions) | Writes a vector to a file in delimited text format. |
Write<T>(String, Vector<Complex<T>>, DelimitedTextOptions) | Writes a complex vector to a file in delimited text format. |
Write<R, C>(Stream, DataFrame<R, C>, DelimitedTextOptions) | Writes a data frame to a stream in delimited text format. |
Write<R, C>(String, DataFrame<R, C>, DelimitedTextOptions) | Writes a data frame to a file in delimited text format. |