GeometryGym.Ifc.IfcFurniture.parseFields C# (CSharp) Метод

parseFields() статический приватный Метод

static private parseFields ( IfcFurniture e, List arrFields, int &ipos ) : void
e IfcFurniture
arrFields List
ipos int
Результат void
        internal static void parseFields(IfcFurniture e, List<string> arrFields, ref int ipos)
        {
            IfcFurnishingElement.parseFields(e, arrFields, ref ipos);
            string s = arrFields[ipos++];
            if (s.StartsWith("."))
                e.mPredefinedType = (IfcFurnitureTypeEnum)Enum.Parse(typeof(IfcFurnitureTypeEnum), s.Replace(".", ""));
        }