[Mono-bugs] [Bug 519953] New: runtime doesn't support reflection calls to methods taking pointers as parameters.
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Jul 7 16:14:33 EDT 2009
http://bugzilla.novell.com/show_bug.cgi?id=519953
Summary: runtime doesn't support reflection calls to methods
taking pointers as parameters.
Classification: Mono
Product: Mono: Runtime
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Minor
Priority: P5 - None
Component: misc
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: rkumpera at novell.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
This crash the runtime:
using System;
class Driver
{
public static unsafe int Test (int *val) {
return 0;
}
public static void Main () {
typeof (Driver).GetMethod ("Test").Invoke (null, new object [1]);
}
}
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list