On my job I work with a v2.0 project. I need know which is the private field that is related to each property
class Foo {
private string _bar;
public string BigBar
{
get { return _bar; }
}}
Someone know how can I check this relation with reflection
public string Evil { get { return _foo + _bar; } }– SLaks Jul 15 '11 at 14:44public string MoreEvil { get { return rand.NextDouble() < .5 ? _foo : _bar; } }– SLaks Jul 15 '11 at 14:45Randomwhich will help to guess which field was used. – Snowbear Jul 15 '11 at 14:47