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

parseFields() static private méthode

static private parseFields ( IfcGeographicElementType t, List arrFields, int &ipos ) : void
t IfcGeographicElementType
arrFields List
ipos int
Résultat void
        internal static void parseFields(IfcGeographicElementType t, List<string> arrFields, ref int ipos)
        {
            IfcElementType.parseFields(t, arrFields, ref ipos);
            string s = arrFields[ipos++];
            if (s.StartsWith("."))
                t.mPredefinedType = (IfcGeographicElementTypeEnum)Enum.Parse(typeof(IfcGeographicElementTypeEnum), s.Replace(".", ""));
        }