Rhys Weatherley wrote:
>
> [DllImport("libc")]
> extern unsafe public static int_t stat(string pathname, stat *buf);
Very nice proposal. Would the following also work?
[DllImport("libc")]
extern public static int_t stat(string pathname, out stat buf);
- Sam Ruby