bigloo.foreign.bgl_make_date C# (CSharp) Method

bgl_make_date() public static method

public static bgl_make_date ( int s, int min, int h, int d, int mon, int y, int tz, bool istz, int isdst ) : date
s int
min int
h int
d int
mon int
y int
tz int
istz bool
isdst int
return date
        public static date bgl_make_date( int   s,
					int   min,
					int   h,
					int   d,
					int   mon,
					int   y,
					int   tz, 
					bool  istz,
					int   isdst )
        {
            return new bigloo.date( s, min, h, d, mon, y, tz, istz, isdst );
        }
foreign