GeometryGym.Ifc.IfcQuantityCount.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string str, ReleaseVersion schema ) : IfcQuantityCount
str string
schema ReleaseVersion
Résultat IfcQuantityCount
        internal static IfcQuantityCount Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityCount q = new IfcQuantityCount();
            int pos = 0, len = str.Length;
            q.Parse(str, ref pos, len);
            string s = ParserSTEP.StripField(str, ref pos, len);
            if (!double.TryParse(s, System.Globalization.NumberStyles.Any, ParserSTEP.NumberFormat, out q.mCountValue))
            {
                if (s.StartsWith("IFCCOUNTMEASURE"))
                {
                    s = s.Substring(16, s.Length - 17);
                    double.TryParse(s, out q.mCountValue);
                }
            }
            if (schema != ReleaseVersion.IFC2x3)
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            return q;
        }

Usage Example

Exemple #1
0
        internal static IfcQuantityCount Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityCount q = new IfcQuantityCount();
            int pos = 0, len = str.Length;

            q.Parse(str, ref pos, len);
            string s = ParserSTEP.StripField(str, ref pos, len);

            if (!double.TryParse(s, System.Globalization.NumberStyles.Any, ParserSTEP.NumberFormat, out q.mCountValue))
            {
                if (s.StartsWith("IFCCOUNTMEASURE"))
                {
                    s = s.Substring(16, s.Length - 17);
                    double.TryParse(s, out q.mCountValue);
                }
            }
            if (schema != ReleaseVersion.IFC2x3)
            {
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            }
            return(q);
        }
All Usage Examples Of GeometryGym.Ifc.IfcQuantityCount::Parse