[Atom] Attribute in generic classes #26
-
I was wondering what is the reason behind the fact that it's not possible to use [Atom] in generic classes. Is there an unsoromountable technical limitation, is it a matter of interest/implementation time, anything else? Could one possibly work around the limitation, currently? Thank you once more for the awesome library! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
UniMob library under the hood generates IL code using the Mono.Cecil library. This is quite simple for regular classes, but the implementation for generic classes is much more complicated. I tried to add support for it, but I couldn't make a correct code generator. In my projects, I did not need generics, so this feature was simply postponed. |
Beta Was this translation helpful? Give feedback.
UniMob library under the hood generates IL code using the Mono.Cecil library. This is quite simple for regular classes, but the implementation for generic classes is much more complicated. I tried to add support for it, but I couldn't make a correct code generator. In my projects, I did not need generics, so this feature was simply postponed.