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

Parse() static private method

static private Parse ( string strDef, ReleaseVersion schema ) : IfcDocumentReference
strDef string
schema ReleaseVersion
return IfcDocumentReference
		internal static IfcDocumentReference Parse(string strDef, ReleaseVersion schema) { IfcDocumentReference r = new IfcDocumentReference(); int ipos = 0; parseFields(r, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return r; }
		internal static void parseFields(IfcDocumentReference r, List<string> arrFields, ref int ipos, ReleaseVersion schema)