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

parseFields() static private méthode

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