Johann Pérez

Results 5 comments of Johann Pérez

@Adriannatsu did you find any workaround for this? ### offtopic ### @dalexsoto I see this issue and several other are marked for the Future milestone. But, what is the roadmap...

@Adriannatsu it might be obvious now that I re check both my example and yours but the problem are Lists and Dictionaries... I'll let you know if I find a...

Thanks @Adriannatsu it didn't work for me either but I went for my own implementation of the iterator pattern and it worked like a charm. It is far from ideal,...

@Adriannatsu This is what I have: ``` public class LicenseIterator { private int current = 0; private IList licenses; public LicenseIterator(IList licenses) { this.licenses = licenses.Select(l => new License(l.LicenseType, l.SerialNumber)).ToList();...

@emysa341 did you find any solution to generate all methods while inheriting from Java.Lang.Obj?