Re: [IronPython] out parameters

2006-05-15 Thread Dino Viehland
(http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrzej Krzywda Sent: Monday, May 15, 2006 6:53 AM To: users@lists.ironpython.com Subject: [IronPython] out parameters H

[IronPython] out parameters

2006-05-15 Thread Andrzej Krzywda
Hi all, Having the following piece of C# code (note the ignore parameter): public class C { public static int M(out int i, out int j, out int k, bool ignore) { i = 20; j = 30; k = 40; return 10; } } we call it