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

parseFields() static private méthode

static private parseFields ( IfcEvaporator s, List arrFields, int &ipos ) : void
s IfcEvaporator
arrFields List
ipos int
Résultat void
		internal static void parseFields(IfcEvaporator s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcEvaporatorTypeEnum)Enum.Parse(typeof(IfcEvaporatorTypeEnum), str);
		}
		internal new static IfcEvaporator Parse(string strDef) { IfcEvaporator s = new IfcEvaporator(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }