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.

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top