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

parseFields() static private méthode

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