Hi,
When I disassemble the code behind for an asp.net control from a dll, the settings and gettings of control properties are disassembled as .set_XXXXX() .get_XXXXX() methods.
Example:
Me.ibtnUpdateBanco.set_Visible(True)
While I was expecting
Me.ibtnUpdateBanco.Visible = True
Then, my recovered VB.NET source code needs to be modified by hand, in order to get a compilable source. For big files, that is an unfortunate problem.
I was looking for an option in .Net Reflector without luck.
Any Ideas?
Thanks in advance.
When I disassemble the code behind for an asp.net control from a dll, the settings and gettings of control properties are disassembled as .set_XXXXX() .get_XXXXX() methods.
Example:
While I was expecting
Then, my recovered VB.NET source code needs to be modified by hand, in order to get a compilable source. For big files, that is an unfortunate problem.
I was looking for an option in .Net Reflector without luck.
Any Ideas?
Thanks in advance.