Question

I am embedding mono into an application i'm writing. One of the objects I have created looks like this:

public class MessageObject
{
  public byte messagetype;
  public byte[] message;
}

If i use mono_field_get_value_object I can get a MonoObject * that represents the message array, but How can I access it like an array? Is there some explicit cast to MonoArray *?

Thanks.

Était-ce utile?

La solution

Explicitly cast MonoObject * to MonoArray *, and then simply use the functions as documented here.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top