dotnet interop:
Hi,
there's this type in .NET 2.0 IEnumString.
I'd like to write an implementation of it in my dll which is going to
be used by c++ code through COM.
how can I set the value of pceltFetched properly if this parameter is
not out or ref within the function?
int Next (
int celt,
[OutAttribute] string[] rgelt,
IntPtr pceltFetched
)
Thanks a million in advance.