GeometryGym.Ifc.IfcAirToAirHeatRecoveryType.parseFields C# (CSharp) Méthode

parseFields() static private méthode

static private parseFields ( IfcAirToAirHeatRecoveryType t, List arrFields, int &ipos ) : void
t IfcAirToAirHeatRecoveryType
arrFields List
ipos int
Résultat void
		internal static void parseFields(IfcAirToAirHeatRecoveryType t,List<string> arrFields, ref int ipos) {  IfcEnergyConversionDeviceType.parseFields(t,arrFields, ref ipos); t.mPredefinedType = (IfcAirToAirHeatRecoveryTypeEnum)Enum.Parse(typeof(IfcAirToAirHeatRecoveryTypeEnum), arrFields[ipos++].Replace(".", "")); }
		internal new static IfcAirToAirHeatRecoveryType Parse(string strDef) { IfcAirToAirHeatRecoveryType t = new IfcAirToAirHeatRecoveryType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }