Parse() static private method

static private Parse ( string str ) : IfcLinearDimension
str string
return IfcLinearDimension
示例#1
0
 //internal IfcLinearDimension(IfcAngularDimension el) : base((IfcDimensionCurveDirectedCallout)el) { }
 internal new static IfcLinearDimension Parse(string str)
 {
     IfcLinearDimension d = new IfcLinearDimension(); int pos = 0; d.Parse(str, ref pos, str.Length); return(d);
 }
示例#2
0
 //internal IfcLinearDimension(IfcAngularDimension el) : base((IfcDimensionCurveDirectedCallout)el) { }
 internal static new IfcLinearDimension Parse(string str)
 {
     IfcLinearDimension d = new IfcLinearDimension(); int pos = 0; d.Parse(str, ref pos, str.Length); return d;
 }