Parse() 정적인 개인적인 메소드

static private Parse ( string str, ReleaseVersion schema ) : IfcQuantityWeight
str string
schema ReleaseVersion
리턴 IfcQuantityWeight
예제 #1
0
        internal static IfcQuantityWeight Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityWeight q = new IfcQuantityWeight();
            int pos = 0, len = str.Length;

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

            if (!double.TryParse(s, out q.mWeightValue))
            {
                IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
                if (mv != null)
                {
                    q.mWeightValue = mv.Measure;
                }
            }
            if (schema != ReleaseVersion.IFC2x3)
            {
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            }
            return(q);
        }
예제 #2
0
 internal static IfcQuantityWeight Parse(string str, ReleaseVersion schema)
 {
     IfcQuantityWeight q = new IfcQuantityWeight();
     int pos = 0, len = str.Length;
     q.Parse(str, ref pos, len);
     string s = ParserSTEP.StripField(str, ref pos, len);
     if (!double.TryParse(s, out q.mWeightValue))
     {
         IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
         if (mv != null)
             q.mWeightValue = mv.Measure;
     }
     if (schema != ReleaseVersion.IFC2x3)
         q.mFormula = ParserSTEP.StripString(str, ref pos, len);
     return q;
 }