Parse() static private method

static private Parse ( string str ) : IfcFixedReferenceSweptAreaSolid
str string
return IfcFixedReferenceSweptAreaSolid
Exemplo n.º 1
0
 internal static IfcFixedReferenceSweptAreaSolid Parse(string str)
 {
     IfcFixedReferenceSweptAreaSolid s = new IfcFixedReferenceSweptAreaSolid();
     int pos = 0;
     s.Parse(str, ref pos, str.Length);
     return s;
 }