[Mono-bugs] [Bug 538280] mono crash in remoting, if I use 'out' agrument.
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Fri Sep 11 00:22:56 EDT 2009
http://bugzilla.novell.com/show_bug.cgi?id=538280
User mailing at mono.developer.kr added comment
http://bugzilla.novell.com/show_bug.cgi?id=538280#c1
--- Comment #1 from J.P. Park <mailing at mono.developer.kr> 2009-09-10 22:22:55 MDT ---
example.
1) Host1
public bool Test() {
var host2 = (IHost2)Activator.GetObject(typeof(IHost2),
"http://127.0.0.1:40002/Host2");
int crash;
var result = var host2.Test(out crash);
return result;
}
2) Host2
public bool Test (out int crash) {
..
}
3) Client
var client = (IHost1)Activator.GetObject(typeof(IHost1),
"http://127.0.0.1:40001/Host1");
var result = var host1.Test();
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list