Parse() static private method

static private Parse ( string str ) : IfcFixedReferenceSweptAreaSolid
str string
return IfcFixedReferenceSweptAreaSolid
コード例 #1
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static IfcFixedReferenceSweptAreaSolid Parse(string str)
 {
     IfcFixedReferenceSweptAreaSolid s = new IfcFixedReferenceSweptAreaSolid();
     int pos = 0;
     s.Parse(str, ref pos, str.Length);
     return s;
 }