GeometryGym.Ifc.IfcDate.convert C# (CSharp) Méthode

convert() static private méthode

static private convert ( string date ) : System.DateTime
date string
Résultat System.DateTime
		internal static DateTime convert(string date) { return new DateTime(int.Parse(date.Substring(0, 4)), int.Parse(date.Substring(5, 2)), int.Parse(date.Substring(8, 2))); }
	}

Same methods

IfcDate::convert ( System.DateTime date ) : string