Setting & getting properties syntax
I would like to see the syntax for setting and getting properties use the syntax which can be compiled in Visual Studio,
For example xxxx.get_FirstName() and xxxx.set_FirstName("John") be converted to xxxx.FirstName and xxxx.FirstName = "John". Another third party decompiler does this already.
Same thing for adding and removing event handlers. For example: xxxx.remove_yyyy() to -= and xxxx.add_yyyy() to +=.
Please sign in to leave a comment.