Re: mono embedding in c++: how to get a array from C# code?

Jonathan Mitchell <[email protected]>
Newsgroups gmane.comp.gnome.mono.general
Message-ID <[email protected]>

> On 8 Nov 2015, at 02:41, sunsflower <[email protected]> wrote:
> 
> I've tried to use a monoclassfield but it doesn't work with a string array in
> C#. the return value is invalide. 
> c++:
> <code>
> 	MonoClassField* field;
> 	field = mono_class_get_field_from_name(klass, "entry");
> 	char* val[100];
> 	MonoString* monoval[100];
> 	mono_field_get_value(obj, field, monoval);		
> 	val[0] = mono_string_to_utf8(monoval[0]);
> </code>
> 
I reckon that mono_field_get_value will return a MonoArray,
Try something a bit like this:

MonoArray* monoArray = NULL;
mono_field_get_value(obj, field, monoArrayl);
MonoString *monoString = mono_array_get(monoArray, MonoString *, 0)
char *s = mono_string_to_utf8(monoString); // copy this into a buffer that you manage
mono_free(s);

J

_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.