C#, Net 2.0
Here\'s the code (I took out all my domain-specific stuff, and it still returns an empty array):
using System; using System.Collections.Gene
You need to specify that you want the private (NonPublic) fields
Change to:
FieldInfo[] fi = cc.GetType().GetFields(BindingFlags.NonPublic | BindingFlags.Instance);