I have a method call that returns System.Type. I want to make use of the
type and do some reflection from C++. Have code like this:

MonoClass* klass = (MonoClass*)mono_runtime_invoke (...);

I am pretty sure that the casting to MonoClass* is not appropriate. The
mono_runtime_invoke() function returns aMonoObject*. How do I coerce the
MonoObject* containing a reference to Type to MonoClass*. I want to be able
to be able to call:

mono_class_get_properties (type, &iter)

iteratively, later.

FYI: I posted this on stackoverflow @
http://stackoverflow.com/questions/8483406/coercing-monoobject-to-monoclass-where-a-method-call-returns-a-typeif
anyone cares to answer.
Thanks

Jonathan
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to