How can I get a PropertyInfo by name using GetType().GetProperty("MypropName") of a type which is obfuscated.
|
|
|
|
|
You need to know what the obfuscated name of the property ended up. That is very fragile as it may change from build to build. If you can tell which property is by other means (its type, custom attributes) it would be better. The obfuscated name will mostly likely be a few non-printable characters or probably just |
|||
|
|
|
|
An alternative would be to exclude the property from Obfuscation using the ObfuscationAttribute Class |
||
|
|
|
|
Depending on the obfuscator, a mapping file might be generated. I've used this to lookup which properties have been mapped to which obfuscated ones. The problem is shipping the mapping file with the assembly kind of defeats the object of obfuscating. |
||
|
|

GetType()for instance). – Martinho Fernandes Nov 7 at 16:48