bigloo.date.date C# (CSharp) Method

date() public method

public date ( int s, int min, int h, int d, int mon, int y, long tz, bool istz, int dst ) : System
s int
min int
h int
d int
mon int
y int
tz long
istz bool
dst int
return System
        public date( int   s,
                 int   min,
                 int   h,
                 int   d,
                 int   mon,
                 int   y,
                 long  tz,
                 bool  istz,
	         int   dst )
        {
            // !!!!! Time zones not yet fully available in .NET !!!!!
              date_time= new DateTime( y, mon, d, h, min, s, GREGORIAN_CALENDAR );
              timezone= 0;
        }

Same methods

date::date ( long seconds ) : System
date