GeometryGym.Ifc.IfcDuration.ToSeconds C# (CSharp) Method

ToSeconds() private method

private ToSeconds ( ) : double
return double
		internal double ToSeconds() { return ((((((mYears * 365) + (mMonths * 30) + mDays) * 24) + mHours) * 60) + mMinutes) * 60 + mSeconds; }
		public string String { get { return getKW + "(" + ToString() + ")"; } }