bigloo.foreign.bgl_file_size C# (CSharp) Method

bgl_file_size() public static method

public static bgl_file_size ( byte file ) : long
file byte
return long
        public static long bgl_file_size( byte[]  file )
        {
            return (long)(new FileInfo( newstring( file ) )).Length;
        }
foreign