using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaeResults { struct DatDataSet { public int StepId; public int IncrementId; public double Time; public string FieldName; public string SetName; public string BaseSetName; public string[] ComponentNames; public bool[] Locals; /// /// ComponentNames [0 ... num. of ids/values][0...num. of components] -> value /// public double[][] Values; public string GetHashKey() { return FieldName + "_" + SetName + "_" + StepId + "_" + IncrementId + "_" + Time; } } }