Parse() static private method

static private Parse ( string str ) : IfcFaceOuterBound
str string
return IfcFaceOuterBound
Example #1
0
 internal static new IfcFaceOuterBound Parse(string str)
 {
     IfcFaceOuterBound b = new IfcFaceOuterBound();
     int pos = 0;
     b.Parse(str, ref pos, str.Length);
     return b;
 }