Given this class
class Foo { // Want to find _bar with reflection [SomeAttribute] private string _bar; public string BigBar { ge
You can do it just like with a property:
FieldInfo fi = typeof(Foo).GetField("_bar", BindingFlags.NonPublic | BindingFlags.Instance); if (fi.GetCustomAttributes(typeof(SomeAttribute)) != null) ...