GeometryGym.Ifc.IfcCircularArcSegment2D.Parse C# (CSharp) 메소드

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

static private Parse ( string str ) : IfcCircularArcSegment2D
str string
리턴 IfcCircularArcSegment2D
        internal static IfcCircularArcSegment2D Parse(string str)
        {
            IfcCircularArcSegment2D c = new IfcCircularArcSegment2D(); int pos = 0; c.Parse(str, ref pos, str.Length); return c;
        }

Same methods

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

Usage Example

예제 #1
0
 internal static IfcCircularArcSegment2D Parse(string str)
 {
     IfcCircularArcSegment2D c = new IfcCircularArcSegment2D(); int pos = 0; c.Parse(str, ref pos, str.Length); return(c);
 }
All Usage Examples Of GeometryGym.Ifc.IfcCircularArcSegment2D::Parse