Hi all,
I'm trying to implement a C# interface with methods that contains ref
parameter, eg:
public interface IContent
{
void BeginProcess(ref bool captureContent);
void EndProcess(string content);
}
A straight implementation will not work because IronPython does not modify
the captureContent value
class ImageGallery(IContent):
def BeginProcess(captureContent):
captureContent = False # This doesn't work.
--
nomadlife.org
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com