Angesichts dieser Klasse class Foo { // Want to find _bar with reflection [SomeAttribute] private string _bar; public string BigBar { get { return this._bar; } } } Ich möchte das private Element _bar finden, das ich mit einem Attribut markieren werde. Ist das möglich? Ich habe dies mit...