Show / Hide Table of Contents

Class CSVPage

Represents a single CSV.

Inheritance
System.Object
CSVPage
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Recolude.Core.IO
Assembly: Recolude.Core.dll
Syntax
public class CSVPage

Constructors

CSVPage(String, String[,])

Declaration
public CSVPage(string name, string[, ] entries)
Parameters
Type Name Description
System.String name
System.String[,] entries

Methods

Combine(String, String, CSVPage[])

Combine like CSV tables into larger ones. Assumes each table has the same headers

Declaration
public static CSVPage Combine(string name, string orderName, params CSVPage[] pages)
Parameters
Type Name Description
System.String name

Name of the resulting CSV.

System.String orderName

The column name that dictates which row comes from which CSV.

CSVPage[] pages

The like pages to combine.

Returns
Type Description
CSVPage

A resulting CSV table that holds all the contents of those passed in.

GetName()

Declaration
public string GetName()
Returns
Type Description
System.String

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
Back to top Generated by DocFX