GeometryGym.Ifc.IfcFooting.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str ) : IfcFooting
str string
return IfcFooting
        internal static IfcFooting Parse(string str)
        {
            IfcFooting f = new IfcFooting(); int pos = 0; f.Parse(str, ref pos, str.Length); return f;
        }

Same methods

IfcFooting::Parse ( string str, int &pos, int len ) : void

Usage Example

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