[Mono-bugs] [Bug 75537][Nor] Changed - Invoking overloaded function
with remoting
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Mon Jul 25 10:54:33 EDT 2005
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by roeie at mainsoft.com.
http://bugzilla.ximian.com/show_bug.cgi?id=75537
--- shadow/75537 2005-07-25 10:45:28.000000000 -0400
+++ shadow/75537.tmp.29529 2005-07-25 10:54:33.000000000 -0400
@@ -44,6 +44,23 @@
every time
Additional Information:
------- Additional Comments From lluis at ximian.com 2005-07-14 06:43 -------
Can you provide a test case for this? thanks.
+
+------- Additional Comments From roeie at mainsoft.com 2005-07-25 10:54 -------
+use the following class definition as remote object, and invoke one
+of its functions from an MS.NET client:
+
+public class Remoteable : MarshalByRefObject
+{
+ public int sum(int x, int y)
+ {
+ return x + y;
+ }
+ public int sum(int x, int y, int z)
+ {
+ return x + y + z;
+ }
+
+}
More information about the mono-bugs
mailing list