vote up 1 vote down star

How can I get a PropertyInfo by name using GetType().GetProperty("MypropName") of a type which is obfuscated.

flag
Surely you would need to know the obfuscated name? – GraemeF Nov 7 at 15:40
2  
Can you identify the property via it's type? That'd be more reliable than relying on the obfuscated name.. – andyp Nov 7 at 15:45
The type name might be obfuscated too, if it's a class in the same assembly – harriyott Nov 7 at 16:07
@harriyott, yeah, but you may be able to get the type without it's name (through a call to GetType() for instance). – Martinho Fernandes Nov 7 at 16:48

3 Answers

vote up 4 vote down check

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 A. Dotfuscator renames something like 80% of the code to A.

link|flag
vote up 1 vote down

An alternative would be to exclude the property from Obfuscation using the ObfuscationAttribute Class

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.