Hello all,
I am trying to decompile a dll with ILSpy v2 and I get the following code:
string licenceCode = MySettings.get_LicenceCode();
when i run iwth ILSpy v1 i get
string LicenceCode = MySettings.LicenceCode;
As you see in V2 decompiletion the property of MySettings is wrong (get_LicenceCode()) however the decompilation of v1 gives back the correct result. This seems like a bug in ILSpy. Is there something that can be done?
thank you