Hi
I need to pass string lists to unmanaged c++ how can i do this ??
I have used IDictionary as method return type and send through com but it doesn't work How to achieve this.
i write in c# as follows
IDictionary postNames() { IDictionary post=Dictionary(); post.Add("Raj"); post.Add("Mahesh"); post.Add("john steek");
return post;
}
then i have created a dll for that class contains this method.
Now how can i access these values in unmanaged c++....
I am worried about two things
1) about the return type to carry these values in c++
2) Is it possible to use like this way ..
Any Help in this regard.
Thanks in advance.