Class TableReader
Reads a EnergyPlus output result table (csv, comma or tab separated).
public class TableReader
- Inheritance
-
TableReader
- Extension Methods
Constructors
TableReader(string, char)
Creates a Table Reader.
public TableReader(string filePath, char separator = ',')
Parameters
Properties
this[string]
Gets a table by its title.
public ResultTable this[string title] { get; }
Parameters
title
stringTable title.
Property Value
- ResultTable
Result table.
Methods
GetTable(string, string)
Gets a table by its title.
public ResultTable GetTable(string title, string report = "")
Parameters
title
stringTable title.
report
stringReport name (optional, useful when same table title is in different reports).
Returns
- ResultTable
Result table.