bigloo.foreign.bgl_last_modification_time C# (CSharp) Method

bgl_last_modification_time() public static method

public static bgl_last_modification_time ( byte file ) : long
file byte
return long
        public static long bgl_last_modification_time( byte[]  file )
        {
            return (long)( (new FileInfo( newstring( file ) )).LastWriteTime.Ticks
               - date.EPOCH_in_seconds);
        }
foreign