I'm using an old C library (built as a DLL) within my C# application. One of the functions in this library requires a FILE*
(as defined in ANSI C) to be passed. Is there any way I can get a FILE* handle, in C#, for a System.IO.File
, stdout
and stderr
?
Or is there any way to workaround this problem, any idea, hint, etc...?
Thanks in advance.