Is your feature request related to a problem? Please describe.
The actual reflection of .NET to Java lacks of some features used from .NET. A simple, non exaustic, list is the following:
- Properties needs explicit set*/get* methods
- Events needs explicit add*/remove* methods, instead the +=/-= operator
- Flags does not have operators
Describe the solution you'd like
Try to find something able to write .NET like without too many changes in the condition listed
Describe alternatives you've considered
One possible solution is to use something similar to the operator overloading. Searching the web I found this:
Additional context
N/A
Is your feature request related to a problem? Please describe.
The actual reflection of .NET to Java lacks of some features used from .NET. A simple, non exaustic, list is the following:
Describe the solution you'd like
Try to find something able to write .NET like without too many changes in the condition listed
Describe alternatives you've considered
One possible solution is to use something similar to the operator overloading. Searching the web I found this:
Additional context
N/A