On 15.10.2011 08:19, Paril wrote: > Hey there. > > I'm probably missing something very basic, but, how do I display exception > data related to exceptions thrown by mono_runtime_invoke? I see that I can > easily post up a "An exception occured" message, but to be more > user-friendly I'd like for the app to produce a full stack track and > everything. How do I go about this?
A MonoException* is actually a MonoObject*, so you can invoke its ToString() method. There is even a helper function for this purpose: mono_object_to_string. Robert _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
