Class ResultsReader
Reads FEM-Design results from list tables text files.
public class ResultsReader : CsvParser, IDisposable
- Inheritance
-
ResultsReader
- Implements
- Inherited Members
- Extension Methods
Constructors
ResultsReader(string)
Reads FEM-Design results from list tables text files.
public ResultsReader(string filePath)
Parameters
filePathstringPath to a .txt/.csv file with listed results from FEM-Design
Methods
BeforeParse(Type)
protected override sealed void BeforeParse(Type type)
Parameters
typeType
ObjectRepresentation(object)
public static string ObjectRepresentation(object myObject)
Parameters
myObjectobject
Returns
Parse(string)
Parses all of a results file. Returns a mixed list of all results in file.
public static List<IResult> Parse(string resultsFilePath)
Parameters
resultsFilePathstringResults file.
Returns
ParseAll()
Parses all of a results file. Returns a mixed list of all results in file.
public List<IResult> ParseAll()
Returns
ParseCsvFiles<T>(List<string>)
Read and parse result data from .csv files
public static List<T> ParseCsvFiles<T>(List<string> csvPaths) where T : IResult
Parameters
Returns
- List<T>
Type Parameters
T