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

Parse() static private method

static private Parse ( string strDef ) : IfcApplication
strDef string
return IfcApplication
		internal static IfcApplication Parse(string strDef) { IfcApplication a = new IfcApplication(); int ipos = 0; parseFields(a, ParserSTEP.SplitLineFields(strDef), ref ipos); return a; }
	}