bigloo.foreign.bgl_seconds_to_utc_date C# (CSharp) Method

bgl_seconds_to_utc_date() public static method

public static bgl_seconds_to_utc_date ( long sec ) : date
sec long
return date
        public static date bgl_seconds_to_utc_date( long  sec )
        {
            date d= new bigloo.date( sec );
            d.date_time= d.date_time.ToUniversalTime();
            return d;
        }
foreign