문제

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