up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

60% accept rate
Surely you would need to know the obfuscated name? – GraemeF Nov 7 '09 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 '09 at 15:45
The type name might be obfuscated too, if it's a class in the same assembly – harriyott Nov 7 '09 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). – R. Martinho Fernandes Nov 7 '09 at 16:48
feedback

3 Answers

up vote 5 down vote accepted

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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